Aracılığıyla paylaş


FlowDocument.FlowDirection Özellik

Tanım

bir FlowDocumentiçindeki içerik akışının göreli yönünü alır veya ayarlar.

public:
 property System::Windows::FlowDirection FlowDirection { System::Windows::FlowDirection get(); void set(System::Windows::FlowDirection value); };
public System.Windows.FlowDirection FlowDirection { get; set; }
member this.FlowDirection : System.Windows.FlowDirection with get, set
Public Property FlowDirection As FlowDirection

Özellik Değeri

FlowDirection

FlowDirection Göreli akış yönünü belirten değerlerden biri. Varsayılan değer: LeftToRight.

Örnekler

Aşağıdaki örnekte bir FlowDocument öğenin özniteliğinin FlowDirection nasıl ayarlanacağı gösterilmektedir.

<FlowDocumentReader>
  <FlowDocument 
    FlowDirection="LeftToRight"
  >
    <Paragraph>
      The FlowDirection of content typically corresponds to the innate flow direction
      of the language being represented.  Hebrew and Arabic provide examples of
      languages that naturally flow from right-to-left.  English, German, and Russian
      provide examples of languages that naturally flow from left-to-right.
    </Paragraph>
  </FlowDocument>
</FlowDocumentReader>

Aşağıdaki örnekte özelliğin FlowDirection program aracılığıyla nasıl ayarlanacağı gösterilmektedir.

FlowDocument flowDoc = new FlowDocument(new Paragraph(new Run("A bit of text content...")));
// Set the content flow direction to left-to-right.
flowDoc.FlowDirection = System.Windows.FlowDirection.LeftToRight;
Dim flowDoc As New FlowDocument(New Paragraph(New Run("A bit of text content...")))
' Set the content flow direction to left-to-right.
flowDoc.FlowDirection = System.Windows.FlowDirection.LeftToRight

Açıklamalar

Bu özelliği almak geçerli olan akış yönünü döndürür. Bu özelliğin ayarlanması, içeriğinin FlowDocument belirtilen yönde yeniden akıtmasına neden olur.

FlowDirection İçerik genellikle temsil edilen dilin doğuştan gelen akış yönüne karşılık gelir. İbranice ve Arapça, sağdan sola doğal olarak akan dillere örnek olarak verilebilir. İngilizce, Almanca ve Rusça, soldan sağa doğal olarak akan dillere örnektir.

Not

Bu özelliğin değeri, işletim sistemi tarafından kullanılan dille eşleşecek şekilde otomatik olarak değiştirilmez. Farklı bir değer kullanmanız gerekiyorsa varsayılan LeftToRightdeğerini kendiniz belirtmeniz gerekir.

Bağımlılık Özelliği Bilgileri

Tanımlayıcı alanı FlowDirectionProperty
Meta veri özellikleri olarak ayarlandı true AffectsParentArrange, Inherits

Şunlara uygulanır