次の方法で共有


GridLength コンストラクター

定義

オーバーロード

GridLength(Double)

新しい Absolute GridLength を初期化します。

GridLength(Double, GridUnitType)

新しい GridLength を初期化します。

GridLength(Double)

ソース:
GridLength.cs
ソース:
GridLength.cs

新しい Absolute GridLength を初期化します。

public:
 GridLength(double value);
public GridLength (double value);
new Microsoft.Maui.GridLength : double -> Microsoft.Maui.GridLength
Public Sub New (value As Double)

パラメーター

value
Double

新しいグリッドの長さの値。

注釈

これは、新しい GridLength (値、GridUnitType.Absolute) に相当します。

適用対象

GridLength(Double, GridUnitType)

ソース:
GridLength.cs
ソース:
GridLength.cs

新しい GridLength を初期化します。

public:
 GridLength(double value, Microsoft::Maui::GridUnitType type);
public GridLength (double value, Microsoft.Maui.GridUnitType type);
new Microsoft.Maui.GridLength : double * Microsoft.Maui.GridUnitType -> Microsoft.Maui.GridLength
Public Sub New (value As Double, type As GridUnitType)

パラメーター

value
Double

GridLength のサイズ。

type
GridUnitType

GridLength の GridUnitType (Auto、Star、Absolute)。

適用対象