Interface ISkiaGridLayout
public interface ISkiaGridLayout : ISkiaLayout, ISkiaControl, IDrawnBase, ICanBeUpdatedWithContext, ICanBeUpdated, ILayoutInsideViewport, IInsideViewport, IVisibilityAware, IDisposable
- Inherited Members
- Extension Methods
Properties
ColumnDefinitions
An IGridColumnDefinition collection for the GridLayout instance.
IReadOnlyList<IGridColumnDefinition> ColumnDefinitions { get; }
Property Value
ColumnSpacing
Gets the amount of space left between columns in the GridLayout.
double ColumnSpacing { get; }
Property Value
DefaultColumnDefinition
ColumnDefinition DefaultColumnDefinition { get; }
Property Value
DefaultRowDefinition
RowDefinition DefaultRowDefinition { get; }
Property Value
RowDefinitions
An IGridRowDefinition collection for the GridLayout instance.
IReadOnlyList<IGridRowDefinition> RowDefinitions { get; }
Property Value
RowSpacing
Gets the amount of space left between rows in the GridLayout.
double RowSpacing { get; }
Property Value
Split
int Split { get; }
Property Value
Methods
GetColumn(BindableObject)
Gets the column of the child element.
int GetColumn(BindableObject view)
Parameters
viewBindableObjectA view that belongs to the Grid layout.
Returns
- int
The column that the child element is in.
GetColumnSpan(BindableObject)
Gets the row span of the child element.
int GetColumnSpan(BindableObject view)
Parameters
viewBindableObjectA view that belongs to the Grid layout.
Returns
- int
The row that the child element is in.
GetRow(BindableObject)
Gets the row of the child element.
int GetRow(BindableObject view)
Parameters
viewBindableObjectA view that belongs to the Grid layout.
Returns
- int
An integer that represents the row in which the item will appear.
GetRowSpan(BindableObject)
Gets the row span of the child element.
int GetRowSpan(BindableObject view)
Parameters
viewBindableObjectA view that belongs to the Grid layout.
Returns
- int
The row that the child element is in.