ITextRangeProvider.GetAttributeValue(Int32) 方法

定义

检索整个文本范围内指定特性的值。

public:
 System::Object ^ GetAttributeValue(int attribute);
public object GetAttributeValue (int attribute);
abstract member GetAttributeValue : int -> obj
Public Function GetAttributeValue (attribute As Integer) As Object

参数

attribute
Int32

文本特性。

返回

检索一个表示指定特性的值的对象。 例如, GetAttributeValue(TextPattern.FontNameAttribute) 将返回一个表示文本范围的字体名称的字符串,同时 GetAttributeValue(TextPattern.IsItalicAttribute) 返回 类型的 Boolean值。

如果指定特性的值在文本范围内会发生变化,则返回 MixedAttributeValue

如果提供程序或控件不支持指定的特性,则返回 NotSupported

例外

如果指定的特性无效。

注解

隐藏文本和可见文本之间没有区别。

适用于