|

Redraw


(boolean) Whether the grid should be automatically redrawn after the operation. Usually you will want to set this to true. However there may be times when you want to perform a lot of grid actions and delay the redraw until later. This is an optional argument. If omitted it will default to true.



VALUE DESCRIPTION


true


Automatically redraw the grid after the operation. (Default)


false


Delay the redraw until later.


Re t u r n s


Nothing. You can use Application.GetLastError to determine whether this action failed, and why.


See also: Related Actions


image

image

Grid.EditCopy

OverviewExamples

Grid.EditCopy ( string ObjectName )


De s cr ip t ion


Copies the currently selected cells to the clipboard. This action is mapped to the Ctrl+C keystroke. Cells are copies in plain text, tab-delimited format. This allows the text to be pasted easily into a text editor or a spreadsheet program like Excel.


P arame t er s


ObjectName


(string) The name of the grid object.


Re t u r n s


Nothing. You can use Application.GetLastError to determine whether this action failed, and why.


See also: Related Actions


image

image

Grid.EditCut

OverviewExamples

Grid.EditCut ( string ObjectName )


De s cr ip t ion


Cuts the currently selected cells to the clipboard. This deletes the cell's contents. This action is mapped to the Ctrl+X keystroke. Cells are copies in plain text, tab-delimited format. This allows the text to be pasted easily into a text editor or a spreadsheet program like Excel.


P arame t er s


ObjectName


(string) The name of the grid object.


Re t u r n s


Nothing. You can use Application.GetLastError to determine whether this action failed, and why.


See also: Related Actions


image

image

Grid.EditPaste

OverviewExamples

Grid.EditPaste ( string ObjectName )


De s cr ip t ion


Pastes the contents of the clipboard to the grid object (if the data format on the clipboard is compatible.) This action is mapped to the Ctrl+V keystroke.


P arame t er s


ObjectName


(string) The name of the grid object.


Re t u r n s


Nothing. You can use Application.GetLastError to determine whether this action failed, and why.


See also: Related Actions


image

image

Grid.EnsureVisible

OverviewExamples

Grid.EnsureVisible ( string ObjectName,


number Row = 0,


number Column = 0 )


De s cr ip t ion


Ensures that the specified cell is visible in a grid object. It will scroll the specified cell into view if necessary.


P arame t er s


ObjectName


(string) The name of the grid object.


|