粘贴到textControl后 rtf 里有很多图片数据 我不想去分析rtf 格式去取图片 想换一种方法
下面是我写的代码
ImageCollection Images = textControl1.Images; //复制一个图像集合
FrameBaseCollection.FrameBaseEnumerator 枚举集 = Images.GetEnumerator();//GetEnumerator返回一个枚举器,可用于遍历集合
while (枚举集.MoveNext())
{
TXTextControl.Image 当前图片 = (TXTextControl.Image)枚举集.Current;// Current 当前 图像
Type yyy = 当前图片.GetType();
}
只写到这里了 没办法取 |
|