Table of Contents

Interface ISkiaGridLayout

Namespace
DrawnUi.Draw
Assembly
DrawnUi.Maui.dll
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

IReadOnlyList<IGridColumnDefinition>

ColumnSpacing

Gets the amount of space left between columns in the GridLayout.

double ColumnSpacing { get; }

Property Value

double

DefaultColumnDefinition

ColumnDefinition DefaultColumnDefinition { get; }

Property Value

ColumnDefinition

DefaultRowDefinition

RowDefinition DefaultRowDefinition { get; }

Property Value

RowDefinition

RowDefinitions

An IGridRowDefinition collection for the GridLayout instance.

IReadOnlyList<IGridRowDefinition> RowDefinitions { get; }

Property Value

IReadOnlyList<IGridRowDefinition>

RowSpacing

Gets the amount of space left between rows in the GridLayout.

double RowSpacing { get; }

Property Value

double

Split

int Split { get; }

Property Value

int

Methods

GetColumn(BindableObject)

Gets the column of the child element.

int GetColumn(BindableObject view)

Parameters

view BindableObject

A 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

view BindableObject

A 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

view BindableObject

A 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

view BindableObject

A view that belongs to the Grid layout.

Returns

int

The row that the child element is in.