GridLength Constructors
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Overloads
GridLength(Double) |
Initializes a new instance of the GridLength structure using the specified absolute value in pixels. |
GridLength(Double, GridUnitType) |
Initializes a new instance of the GridLength structure and specifies what kind of value it holds. |
Remarks
This struct represents the .NET projection of the Windows Runtime (WinRT) GridLength
struct. For more information, see GridLength in the UWP API reference.
GridLength(Double)
Initializes a new instance of the GridLength structure using the specified absolute value in pixels.
public:
GridLength(double pixels);
public GridLength (double pixels);
new Windows.UI.Xaml.GridLength : double -> Windows.UI.Xaml.GridLength
Public Sub New (pixels As Double)
Parameters
- pixels
- Double
The absolute count of pixels to establish as the value.
Applies to
GridLength(Double, GridUnitType)
Initializes a new instance of the GridLength structure and specifies what kind of value it holds.
public:
GridLength(double value, Windows::UI::Xaml::GridUnitType type);
public GridLength (double value, Windows.UI.Xaml.GridUnitType type);
new Windows.UI.Xaml.GridLength : double * Windows.UI.Xaml.GridUnitType -> Windows.UI.Xaml.GridLength
Public Sub New (value As Double, type As GridUnitType)
Parameters
- value
- Double
The initial value of this instance of GridLength.
- type
- GridUnitType
The GridUnitType held by this instance of GridLength.