次の方法で共有


Block.FlowDirection プロパティ

定義

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

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 値の 1 つ。 既定値は LeftToRightです。

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

<FlowDocument>
  <Paragraph FlowDirection="LeftToRight">
    This paragraph will flow from left to right.
  </Paragraph>
</FlowDocument>

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

Paragraph par = new Paragraph(new Run("This paragraph will flow from left to right."));
par.FlowDirection = FlowDirection.LeftToRight;
Dim par As New Paragraph(New Run("This paragraph will flow from left to right."))
par.FlowDirection = FlowDirection.LeftToRight

注釈

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

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

手記

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

依存関係プロパティ情報

識別子フィールド FlowDirectionProperty
true に設定されたメタデータ プロパティ InheritsAffectsParentArrange

適用対象