Aracılığıyla paylaş


TextRange.Text Özellik

Tanım

Geçerli seçimin düz metin içeriğini alır veya ayarlar.

public:
 property System::String ^ Text { System::String ^ get(); void set(System::String ^ value); };
public string Text { get; set; }
member this.Text : string with get, set
Public Property Text As String

Özellik Değeri

Geçerli seçimin düz metin içeriğini içeren bir dize.

Özel durumlar

Bu özelliği nullolarak ayarlama girişiminde bulunulduğunda gerçekleşir.

Örnekler

Aşağıdaki örnekte özelliğinin kullanımı gösterilmektedir Text .

// This method returns a plain text representation of a specified FlowDocument.
string GetTextFromFlowDocument(FlowDocument flowDoc)
{
     // Create a new TextRanage that takes the entire FlowDocument as the current selection.
     TextRange flowDocSelection = new TextRange(flowDoc.ContentStart, flowDoc.ContentEnd);
      
     // Use the Text property to extract a string that contains the unformatted text contents 
     // of the FlowDocument.
     return flowDocSelection.Text;
}
' This method returns a plain text representation of a specified FlowDocument.
Private Function GetTextFromFlowDocument(ByVal flowDoc As FlowDocument) As String
    ' Create a new TextRanage that takes the entire FlowDocument as the current selection.
    Dim flowDocSelection As New TextRange(flowDoc.ContentStart, flowDoc.ContentEnd)

    ' Use the Text property to extract a string that contains the unformatted text contents 
    ' of the FlowDocument.
    Return flowDocSelection.Text
End Function

Açıklamalar

Mevcut biçimlendirmeden bağımsız olarak, geçerli seçimdeki düz metin içeriğini ayıklamak için bu özelliği kullanın.

Yeni satır karakterleri ve paragraf sonları bu özelliğe göre eşdeğer olarak kabul edilir. Geçerli seçimde bulunan içerik sonu türleri, bu özellik okunduğunda yeni satırlara dönüştürülür.

Şunlara uygulanır