バージョン

TextFrameHeight 構造体

テキスト フレームの高さを表します。
シンタックス
'宣言
 
Public Structure TextFrameHeight 
   Inherits System.ValueType
public struct TextFrameHeight : System.ValueType 
解説

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

  • "auto" - new TextFrameHeight(null, ExtentRule.Auto)
  • "12.5" - new TextFrameHeight(new Extent(12.5, ExtentUnitType.Points), ExtentRule.Exact)
  • "20.5px" - new TextFrameHeight(new Extent(20.5, ExtentUnitType.LogicalPixels), ExtentRule.Exact)
  • "atleast 12.5" - new TextFrameHeight(new Extent(12.5, ExtentUnitType.Points), ExtentRule.AtLeast)
  • "atleast 20.5px" - new TextFrameHeight(new Extent(20.5, ExtentUnitType.LogicalPixels), ExtentRule.AtLeast)

参照