ListBox.CellAlignmentOffsetAt

From Xojo Documentation

Property (As Integer )
aListBox.CellAlignmentOffsetAt(Row as Integer, Column as Integer) = newIntegerValue
or
IntegerValue = aListBox.CellAlignmentOffsetAt(Row as Integer, Column as Integer)

New in 2019r2

Supported for all project types and targets.

The value is the distance in points from the right edge of the cell. Row and Column are zero-based. This property overrides ColumnAlignmentOffsetAt for that cell.

Notes

Any value specified here is applied to the value used for ColumnAlignmentOffset.

Sample Code

This code is applied to a column that is right-aligned and moves the contents of a cell 10 points to the left.

Me.CellAlignmentOffsetAt(1, 3) = -10

See Also

ColumnAlignmentOffsetAt