ITextPara 介面 (tom.h)
文字物件模型 (TOM) RTF 範圍屬性可透過一對雙重介面 ITextFont 和 ITextPara 來存取。
繼承
ITextPara 介面繼承自 IDispatch 介面。 ITextPara 也有下列類型的成員:
方法
ITextPara 介面具有這些方法。
備註
ITextFont 和 ITextPara 介面分別封裝 Microsoft Word Format Font 和 Paragraph 對話框的功能。 這兩個介面都包含重複的 (Value) 屬性,可以傳回範圍物件中屬性的複本,或將一組屬性傳送至範圍。 因此,它們就像可程式化格式繪製器一樣。 例如,您可以使用下列子程式,將範圍 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 以外的索引卷標樣式 ()
- 樣式 WidowControl
規格需求
需求 | 值 |
---|---|
最低支援的用戶端 | Windows Vista [僅限傳統型應用程式] |
最低支援的伺服器 | Windows Server 2003 [僅限傳統型應用程式] |
目標平台 | Windows |
標頭 | tom.h |
另請參閱
概念