BBjGrid::getRowVerticalAlignment

Description

In BBj 18.00 and higher, this method returns the vertical alignment of all cells in a BBjGrid row.

Syntax

Return Value

Method

int

getRowVerticalAlignment(int row)

Parameters

Variable

Description

row

Specifies the row index.

Return Value

Returns one of the following alignments:

Align Value Constants

GRID_ALIGN_TOP

GRID_ALIGN_CENTER

GRID_ALIGN_BOTTOM

Remarks

None.

Example

gui! = BBjAPI().openSysGui("X0")
wnd! = gui!.addWindow(gui!.getAvailableContext(),100,50,500,400,"Grid Test")
grd! = wnd!.addGrid(wnd!.getAvailableControlID(),32,24,252,133)
grd!.setNumColumns(2)
grd!.setFitToGrid(BBjGrid.AUTO_RESIZE_NEXT_COLUMN)
vec! = new BBjVector()
vec!.addItem("1")
vec!.addItem("Item 1")
vec!.addItem("2")
vec!.addItem("Item 2")
vec!.addItem("3")
vec!.addItem("Item 3")
grd!.setNumRows(3)
grd!.setCellText(vec!)
grd!.setRowVerticalAlignment(0,1)
print grd!.getRowVerticalAlignment(0)
wnd!.setCallback(wnd!.ON_CLOSE,"close")
process_events

close:
release

ClosedVersion History

  • BBj 18.00: BBjGrid::getRowVerticalAlignment added.

See Also

BBjAPI

BBjSysGui

BBjControl

BBjWindow

BBjGrid

BBjGrid - Grid Cell Alignment

See the BBj Object Diagram for an illustration of the relationship between BBj Objects.