CGridCtrl:SetVertAlign, CGridView:SetVertAlign


The SetVertAlign method sets the vertical alignment for the entire grid or a row of the grid. This method overrides the initial grid properties defined by the values of GridParams.nVertAlign and GridParams.nTH_VertAlign.

Syntax

CGridCtrl:SetVertAlign( nAlign )

CGridCtrl:SetVertAlign( nRow, nAlign )

bullet.gif    Where nAlign is the alignment value: 1= align top, 2= align bottom, 3= align center.

bullet.gif    nRow is the index of the row to set. Rows in the table body begin at index 1. A value of 0 or less indicates a row in the top heading.

bullet.gif    If nRow is not specified, the entire table is set.

Example

The following script sets the alignment of row 12 to "bottom":

V = attach_gridview()

-- attach a grid from the Mira desktop

G = new_gridctrl(V)

-- create a CGridCtrl for the window

G:SetVertAlign( 12, 2 )

-- set the alignment of row 12 to "bottom"

Related Topics

CGridCtrl class

SetCellVertAlign

SetHorzAlign

SetCellHorzAlign


Mira Pro x64 Script User's Guide, v.8.77 Copyright Ⓒ 2024 Mirametrics, Inc. All Rights Reserved.