代码语言
.
CSharp
.
JS
Java
Asp.Net
C
MSSQL
PHP
Css
PLSQL
Python
Shell
EBS
ASP
Perl
ObjC
VB.Net
VBS
MYSQL
GO
Delphi
AS
DB2
Domino
Rails
ActionScript
Scala
代码分类
文件
系统
字符串
数据库
网络相关
图形/GUI
多媒体
算法
游戏
Jquery
Extjs
Android
HTML5
菜单
网页交互
WinForm
控件
企业应用
安全与加密
脚本/批处理
开放平台
其它
【
CSharp
】
获取RICHTEXTBOX所有图形的位置和大小
作者:
zgke
/ 发布于
2014/7/29
/
1097
public IList<Rectangle> GetRichTextObjRectangle(RichTextBox p_RichTextBox) { IList<Rectangle> _RectangleList =new List<Rectangle>(); RichTextBox _RichText = new RichTextBox(); _RichText.Rtf = p_RichTextBox.Rtf; int _Count = p_RichTextBox.Text.Length; for (int i = 0; i != _Count; i++) { if (p_RichTextBox.Text[i] == ' ') { _RichText.Select(i, 1); if (_RichText.SelectionType.ToString() == "Object") { Point _StarPoint = p_RichTextBox.GetPositionFromCharIndex(i); System.Text.RegularExpressions.Regex _RegexWidth = new System.Text.RegularExpressions.Regex(@"(?<=//objw)[^//]+"); System.Text.RegularExpressions.Regex _RegexHeight = new System.Text.RegularExpressions.Regex(@"(?<=//objh)[^{]+"); int _Width = 0; int _Height = 0; if(int.TryParse(_RegexWidth.Match(_RichText.SelectedRtf).Value,out _Width) && int.TryParse(_RegexHeight.Match(_RichText.SelectedRtf).Value,out _Height)) { //这里的数字要 /15才可以 _RectangleList.Add(new Rectangle(_StarPoint.X, _StarPoint.Y, _Width/15, _Height/15)); } } } } _RichText.Dispose(); return _RectangleList; }
试试其它关键字
同语言下
.
文件IO 操作类库
.
Check图片类型[JPEG(.jpg 、.jpeg),TIF,GIF,BMP,PNG,P
.
机器名和IP取得(IPV4 IPV6)
.
Tiff转换Bitmap
.
linqHelper
.
MadieHelper.cs
.
RegHelper.cs
.
如果关闭一个窗体后激活另一个窗体的事件或方法
.
创建日志通用类
.
串口辅助开发类
可能有用的
.
文件IO 操作类库
.
Check图片类型[JPEG(.jpg 、.jpeg),TIF,GIF,BMP,PNG,P
.
机器名和IP取得(IPV4 IPV6)
.
Tiff转换Bitmap
.
linqHelper
.
MadieHelper.cs
.
RegHelper.cs
.
如果关闭一个窗体后激活另一个窗体的事件或方法
.
创建日志通用类
.
串口辅助开发类
zgke
贡献的其它代码
(
46
)
.
让程序只保证一个进程的类
.
获取PictureBox的SizeMode为Zoom图形的大小
.
获取RICHTEXTBOX所有图形的位置和大小
.
实现系统热键盘注册的类.
.
操作CUR的类
.
读写 Photoshop PSD文件 操作类
.
获取系统鼠标指针
.
隐藏滚动条
.
实现BCD码
.
获取EXCEL所有表名
Copyright © 2004 - 2024 dezai.cn. All Rights Reserved
站长博客
粤ICP备13059550号-3