iTextPara 接口 (tom.h)
文本对象模型 (TOM) 富文本范围属性通过一对双接口 ITextFont 和 ITextPara 进行访问。
继承
ITextPara 接口继承自 IDispatch 接口。 ITextPara 还具有以下类型的成员:
方法
ITextPara 接口具有这些方法。
注解
ITextFont 和 ITextPara 接口分别封装 Microsoft Word格式字体和段落对话框的功能。 这两个接口都包含重复 (Value) 属性,该属性可以返回 range 对象中属性的副本或将一组属性传输到某个区域。 因此,它们的作用类似于可编程格式刷。 例如,可以使用以下子例程将所有属性从范围 r1 传输到 r2 范围,但使 r2 加粗,字号为 12 磅。
Sub AttributeCopy(r1 As ITextRange, r2 As ITextRange)
Dim tf As ITextFont
tf = r1.Font ' Value is the default property
tf.Bold = tomTrue ' You can make some modifications
tf.Size = 12
tf.Animation = tomSparkleText
r2.Font = tf ' Apply font attributes all at once
End Sub
有关用 C++ 编写的类似示例,请参阅 SetFont 。
ITextPara 接口封装“Word段落”对话框。 所有度量都以浮点数表示。 富编辑控件能够接受和返回所有 ITextPara 属性不变 (即,无需修改) ,通过 TOM 及其 RTF 格式 (RTF) 转换器。 但是,以下属性对控件显示的内容没有影响:
- DoNotHyphen
- KeepTogether
- KeepWithNext
- LineSpacing
- LineSpacingRule
- NoLineNumber
- PageBreakBefore
- 制表符对齐方式
- 除 tomAlignLeft 和 tomSpaces 以外的选项卡样式 ()
- Style WidowControl
要求
要求 | 值 |
---|---|
最低受支持的客户端 | Windows Vista [仅限桌面应用] |
最低受支持的服务器 | Windows Server 2003 [仅限桌面应用] |
目标平台 | Windows |
标头 | tom.h |
请参阅
概念性