FigureUnitType 列挙型
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
FigureLength の幅または高さに関連付けられる単位型を記述します。
public enum class FigureUnitType
public enum FigureUnitType
type FigureUnitType =
Public Enum FigureUnitType
- 継承
フィールド
Auto | 0 | FigureLength が指定されていない場合の既定値です。この値は、制約なしに計算される、Figure の幅または高さの値を作成します。 メモ: FigureUnitType を Auto に設定すると、FigureLength の Value プロパティが |
Column | 2 | Figure の幅または高さの値は、Figure が含まれる列の幅の分数 (1 よりも大きい分数を含む) で表されます。 |
Content | 3 | Figure の幅または高さの値は、Figure のコンテンツ幅の分数 (1 よりも大きい分数を含む) で表されます。 メモ: FigureUnitType を Content に設定する場合、FigureLength の Value プロパティを、 |
Page | 4 | Figure の幅または高さの値は、Figure が含まれるページ幅の分数 (1 よりも大きい分数を含む) で表されます。 メモ: FigureUnitType を Page に設定する場合、FigureLength の Value プロパティを、 |
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);
}
}
}
}