FigureUnitType 列挙型

定義

FigureLength の幅または高さに関連付けられる単位型を記述します。

public enum class FigureUnitType
public enum FigureUnitType
type FigureUnitType = 
Public Enum FigureUnitType
継承
FigureUnitType

フィールド

Auto 0

FigureLength が指定されていない場合の既定値です。この値は、制約なしに計算される、Figure の幅または高さの値を作成します。 メモ: FigureUnitTypeAuto に設定すると、FigureLengthValue プロパティが 1 に設定されます。

Column 2

Figure の幅または高さの値は、Figure が含まれる列の幅の分数 (1 よりも大きい分数を含む) で表されます。

Content 3

Figure の幅または高さの値は、Figure のコンテンツ幅の分数 (1 よりも大きい分数を含む) で表されます。 メモ: FigureUnitTypeContent に設定する場合、FigureLengthValue プロパティを、0 から 1 の値に設定する必要があります。

Page 4

Figure の幅または高さの値は、Figure が含まれるページ幅の分数 (1 よりも大きい分数を含む) で表されます。 メモ: FigureUnitTypePage に設定する場合、FigureLengthValue プロパティを、0 から 1 の値に設定する必要があります。

Pixel 1

Figure の幅または高さの値は、ピクセル (96 ピクセル/インチ) で表されます。

次の例では、ユーザーがクリックFigureWidthすると、減少しますFigure。 サンプルの XAML を次に示します。

<Page xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  x:Class="SDKSample.FigureLengthExample" >

  <FlowDocumentReader>
    <FlowDocument >
      <Paragraph>
        Raw text inside the paragraph
        <Figure Name="myFigure" Width="300">
          <Paragraph FontStyle="Italic" MouseDown="OnMouseDownDecreaseWidth" >
            Text inside of paragraph that is inside Figure...
          </Paragraph>
        </Figure>
      </Paragraph>
    </FlowDocument>
  </FlowDocumentReader>



</Page>

ピクセルを使用して単位の種類をWidthFigure指定するコードを次に示します。

using System;
using System.Windows;
using System.Windows.Controls;
using System.Windows.Input;

namespace SDKSample
{
    public partial class FigureLengthExample : Page
    {

        void OnMouseDownDecreaseWidth(object sender, MouseButtonEventArgs args)
        {
            FigureLength myFigureLength = myFigure.Width;
            double widthValue = myFigureLength.Value;
            if (widthValue > 0)
            {
                myFigure.Width = new FigureLength((widthValue - 10), FigureUnitType.Pixel);
            }
        }
    }
}

適用対象