FlowDocument.FlowDirection プロパティ

定義

FlowDocument 内のコンテンツのフローの相対的な方向を取得または設定します。

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

プロパティ値

FlowDirection

相対的なフロー方向を指定する FlowDirection 値のいずれか。 既定値は、LeftToRight です。

次の例は、要素の属性を設定する FlowDirection 方法を FlowDocument 示しています。

<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>

次の例では、FlowDirection プロパティをプログラムで設定する方法を示しています。

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

注釈

このプロパティを取得すると、現在有効なフロー方向が返されます。 このプロパティを設定すると、指定した方向にリフローする内容 FlowDocument が発生します。

通常、コンテンツの内容は FlowDirection 、表される言語の生来のフロー方向に対応します。 ヘブライ語とアラビア語は、右から左に自然に流れる言語の例です。 英語、ドイツ語、ロシア語は、自然に左から右に流れる言語の例です。

注意

このプロパティの値は、オペレーティング システムで使用されている言語と一致するように自動的に変更されません。 別の値を使用する必要がある場合は、既定値 LeftToRightを使用して、自分で指定する必要があります。

依存プロパティ情報

識別子フィールド FlowDirectionProperty
メタデータのプロパティが次に設定されている true AffectsParentArrange, Inherits

適用対象