Skip to content

Latest commit

 

History

History
77 lines (70 loc) · 1.66 KB

File metadata and controls

77 lines (70 loc) · 1.66 KB

GetLBEventInfo

Description

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)

Parameters

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.

Remarks

'''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;

Version

Availability: from VectorWorks12.0

Category