GridCellFactoryBase.ColumnInfo Constructor
In This Topic
Initializes a new instance of the
GridCellFactoryBase.ColumnInfo class.
Syntax
'Declaration
Public Function New( _
ByVal As Xamarin.Forms.GridLength, _
ByVal As Double, _
ByVal As Double, _
ByVal As Boolean _
)
'Usage
Dim width As Xamarin.Forms.GridLength
Dim minWidth As Double
Dim maxWidth As Double
Dim isVisible As Boolean
Dim instance As New GridCellFactoryBase.ColumnInfo(width, minWidth, maxWidth, isVisible)
public GridCellFactoryBase.ColumnInfo(
Xamarin.Forms.GridLength ,
double ,
double ,
bool
)
Parameters
- width
- The width.
- minWidth
- The minimum width.
- maxWidth
- The maximum width.
- isVisible
- if set to
true
the column is visible.
See Also