Skip to main content

GridLayout.SetValues(Pane, Int32, Int32, Int32, Int32) Method

Sets values that define the pane position within the layout grid.

Namespace: DevExpress.Xpf.Charts

Assembly: DevExpress.Xpf.Charts.v23.2.dll

NuGet Package: DevExpress.Wpf.Charts

Declaration

public static void SetValues(
    Pane pane,
    int row,
    int column,
    int rowSpan = 1,
    int columnSpan = 1
)

Parameters

Name Type Description
pane Pane

The pane whose position should be specified.

row Int32

The integer index of the row the pane occupies. This value should be greater than or equal to 0.

column Int32

The integer index of the column the pane occupies. This value should be greater than or equal to 0.

Optional Parameters

Name Type Default Description
rowSpan Int32 1

The number of rows the pane can simultaneously occupy, starting with its initial row index. This value should be greater than or equal to 1. This is an optional parameter.

columnSpan Int32 1

The number of columns the pane can simultaneously occupy, starting with its initial column index. This value should be greater than or equal to 1. This is an optional parameter.

See Also