Retrieves the last event information for the specified list browser.
FUNCTION GetLBEventInfo(
dialogID : LONGINT;
componentID : LONGINT;
VAR eventType : INTEGER;
VAR rowIndex : INTEGER;
VAR columIndex : INTEGER): BOOLEAN;def vs.GetLBEventInfo(dialogID, componentID):
return (BOOLEAN, eventType, rowIndex, columIndex)| Name | Type | Description |
|---|---|---|
| dialogID | LONGINT | id of the dialog that contains the list browser |
| componentID | LONGINT | id of the list browser control |
| eventType | INTEGER | |
| rowIndex | INTEGER | the row index where the click occurred. |
| columIndex | INTEGER | the column index where the click occurred. |
'''eventType''' kMessageDataChangeClick = -2; kMessageDataChangeAllClick = -3; kMessageSelectionChangeClick = -4; kMessageDoubleClick = -5; kMessageDeleteKeyPressed = -6; kMessageUpKeyPressed = -7; kMessageDownKeyPressed = -8; kMessageAlphaNumericKeyPressed = -9; kMessageSortOccurred = -10; kMessageEnterKeyPressed = -12; kMessageDataChangeRecursiveClick = -13; kMessageDoubleAllClick = -14; kMessageDoubleRecursiveClick = -15;
Availability: from VectorWorks12.0