GridLength 建構函式
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
多載
GridLength(Double) |
初始化新的絕對 GridLength。 |
GridLength(Double, GridUnitType) |
初始化新的 GridLength。 |
GridLength(Double)
初始化新的絕對 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。
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)。