TextCharacters 构造函数
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
初始化 TextCharacters 类的新实例。
重载
TextCharacters(String, TextRunProperties) |
使用指定的字符串初始化 TextCharacters 类的新实例。 |
TextCharacters(Char*, Int32, TextRunProperties) |
使用指定的不安全字符串初始化 TextCharacters 类的新实例。 |
TextCharacters(Char[], Int32, Int32, TextRunProperties) |
使用指定的字符数组初始化 TextCharacters 类的新实例。 |
TextCharacters(String, Int32, Int32, TextRunProperties) |
使用指定的子字符串初始化 TextCharacters 类的新实例。 |
TextCharacters(String, TextRunProperties)
使用指定的字符串初始化 TextCharacters 类的新实例。
public:
TextCharacters(System::String ^ characterString, System::Windows::Media::TextFormatting::TextRunProperties ^ textRunProperties);
public TextCharacters (string characterString, System.Windows.Media.TextFormatting.TextRunProperties textRunProperties);
new System.Windows.Media.TextFormatting.TextCharacters : string * System.Windows.Media.TextFormatting.TextRunProperties -> System.Windows.Media.TextFormatting.TextCharacters
Public Sub New (characterString As String, textRunProperties As TextRunProperties)
参数
- textRunProperties
- TextRunProperties
要用于 characterString
中字符的 TextRunProperties 值。
适用于
TextCharacters(Char*, Int32, TextRunProperties)
重要
此 API 不符合 CLS。
使用指定的不安全字符串初始化 TextCharacters 类的新实例。
public:
TextCharacters(char* unsafeCharacterString, int length, System::Windows::Media::TextFormatting::TextRunProperties ^ textRunProperties);
[System.CLSCompliant(false)]
[System.Security.SecurityCritical]
public TextCharacters (char* unsafeCharacterString, int length, System.Windows.Media.TextFormatting.TextRunProperties textRunProperties);
[System.CLSCompliant(false)]
public TextCharacters (char* unsafeCharacterString, int length, System.Windows.Media.TextFormatting.TextRunProperties textRunProperties);
[<System.CLSCompliant(false)>]
[<System.Security.SecurityCritical>]
new System.Windows.Media.TextFormatting.TextCharacters : nativeptr<char> * int * System.Windows.Media.TextFormatting.TextRunProperties -> System.Windows.Media.TextFormatting.TextCharacters
[<System.CLSCompliant(false)>]
new System.Windows.Media.TextFormatting.TextCharacters : nativeptr<char> * int * System.Windows.Media.TextFormatting.TextRunProperties -> System.Windows.Media.TextFormatting.TextCharacters
参数
- unsafeCharacterString
- Char*
指向字符串的指针。
- length
- Int32
要在 unsafeCharacterString
中使用的字符的长度。
- textRunProperties
- TextRunProperties
要用于 unsafeCharacterString
中字符的 TextRunProperties 值。
- 属性
适用于
TextCharacters(Char[], Int32, Int32, TextRunProperties)
使用指定的字符数组初始化 TextCharacters 类的新实例。
public:
TextCharacters(cli::array <char> ^ characterArray, int offsetToFirstChar, int length, System::Windows::Media::TextFormatting::TextRunProperties ^ textRunProperties);
public TextCharacters (char[] characterArray, int offsetToFirstChar, int length, System.Windows.Media.TextFormatting.TextRunProperties textRunProperties);
new System.Windows.Media.TextFormatting.TextCharacters : char[] * int * int * System.Windows.Media.TextFormatting.TextRunProperties -> System.Windows.Media.TextFormatting.TextCharacters
Public Sub New (characterArray As Char(), offsetToFirstChar As Integer, length As Integer, textRunProperties As TextRunProperties)
参数
- offsetToFirstChar
- Int32
相对于要在 characterArray
中使用的第一个字符的偏移量。
- length
- Int32
要在 characterArray
中使用的字符的长度。
- textRunProperties
- TextRunProperties
要用于 characterArray
中字符的 TextRunProperties 值。
适用于
TextCharacters(String, Int32, Int32, TextRunProperties)
使用指定的子字符串初始化 TextCharacters 类的新实例。
public:
TextCharacters(System::String ^ characterString, int offsetToFirstChar, int length, System::Windows::Media::TextFormatting::TextRunProperties ^ textRunProperties);
public TextCharacters (string characterString, int offsetToFirstChar, int length, System.Windows.Media.TextFormatting.TextRunProperties textRunProperties);
new System.Windows.Media.TextFormatting.TextCharacters : string * int * int * System.Windows.Media.TextFormatting.TextRunProperties -> System.Windows.Media.TextFormatting.TextCharacters
Public Sub New (characterString As String, offsetToFirstChar As Integer, length As Integer, textRunProperties As TextRunProperties)
参数
- offsetToFirstChar
- Int32
相对于要在 characterString
中使用的第一个字符的偏移量。
- length
- Int32
要在 characterString
中使用的字符的长度。
- textRunProperties
- TextRunProperties
要用于 characterString
中字符的 TextRunProperties 值。