다음을 통해 공유


TextCharacters 생성자

정의

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)

매개 변수

characterString
String

텍스트 문자가 들어 있는 String입니다.

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)

매개 변수

characterArray
Char[]

Char 배열입니다.

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)

매개 변수

characterString
String

텍스트 문자가 들어 있는 String입니다.

offsetToFirstChar
Int32

characterString에서 사용할 첫 번째 문자의 오프셋입니다.

length
Int32

characterString에서 사용할 문자의 길이입니다.

textRunProperties
TextRunProperties

characterString의 문자에 사용할 TextRunProperties 값입니다.

적용 대상