FigureUnitType 枚举

定义

描述与 FigureLength 的宽度或高度关联的单位类型。

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

字段

Auto 0

未指定 FigureLength 时的默认值,该值将为不带约束计算的 Figure 的宽度或高度创建一个值。 注意:FigureUnitType 设置为 Auto 时,FigureLengthValue 属性设置为 1

Column 2

Figure 的宽度或高度的值表示为 Figure 所在列的宽度的几分之几(包括大于 1 的分数)。

Content 3

Figure 的宽度或高度的值表示为 Figure 内容宽度的几分之几(包括大于 1 的分数)。 注意:FigureUnitType 设置为 Content 时,FigureLengthValue 属性必须设置为介于 01 之间的值。

Page 4

Figure 的宽度或高度的值表示为 Figure 所在页面宽度的几分之几(包括大于 1 的分数)。 注意:FigureUnitType 设置为 Page 时,FigureLengthValue 属性必须设置为介于 01 之间的值。

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使用 Pixel 指定单位类型的代码。

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);
            }
        }
    }
}

适用于