バージョン

Extent 構造体

範囲値を表します。
シンタックス
'宣言
 
Public Structure Extent 
   Inherits System.ValueType
public struct Extent : System.ValueType 
解説

注: この構造を XAML で指定するには、型コンバーターが提供されます。値の例は "" に含まれ、相対する C# コード例も表示されます。

  • "5" - new Extent(5, ExtentUnitType.Points) 
  • "5.5pt" - new Extent(5.5, ExtentUnitType.Points)
  • "5pc" - new Extent(60, ExtentUnitType.Points)
  • "105twip" - new Extent(105, ExtentUnitType.Twips)
  • ".23in" - new Extent(.23, ExtentUnitType.Inches)
  • ".23cm" - new Extent(.23, ExtentUnitType.Centimeters)
  • ".23mm" - new Extent(.23, ExtentUnitType.Millimeters)
  • "17px" - new Extent(17, ExtentUnitType.LogicalPixels)
  • "200emu" - new Extent(200, ExtentUnitType.Emus)

参照