GridLength Constructors

Definition

Initializes a new instance of the GridLength structure.

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.

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 System.Windows.GridLength : double -> System.Windows.GridLength
Public Sub New (pixels As Double)

Parameters

pixels
Double

The number of device-independent pixels (96 pixels-per-inch).

Exceptions

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, System::Windows::GridUnitType type);
public GridLength (double value, System.Windows.GridUnitType type);
new System.Windows.GridLength : double * System.Windows.GridUnitType -> System.Windows.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.

Exceptions

See also

Applies to