raindrop110 你好,
获取方式见代码:
- foreach (TXTextControl.Table table in this.textControl1.Tables)
- {
-
- }
- foreach (TXTextControl.TextField textField in this.textControl1.TextFields)
- {
- }
- //applicationtext、MergeField 都通过 ApplicationField 获取,使用TypeName 属性进行进一步判断
- foreach (TXTextControl.ApplicationField applicationField in this.textControl1.ApplicationFields)
- {
- string filedType = applicationField.TypeName;
- }
复制代码 |