共用方式為


GridLength 建構函式

定義

多載

GridLength(Double)

初始化新的絕對 GridLength。

GridLength(Double, GridUnitType)

初始化新的 GridLength。

GridLength(Double)

來源:
GridLength.cs
來源:
GridLength.cs

初始化新的絕對 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 (value, 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)。

適用於