Skip to content

Latest commit

 

History

History
33 lines (26 loc) · 846 Bytes

File metadata and controls

33 lines (26 loc) · 846 Bytes

vsoWidgetPopupGet

Description

Get the text of an item from a popup widget. (For example, a dropdown list item of a PIO)

PROCEDURE vsoWidgetPopupGet(
				widgetID    : LONGINT;
				index       : LONGINT;
				VAR outId   : STRING;
				VAR outText : STRING);
def vs.vsoWidgetPopupGet(widgetID, index):
    return (outId, outText)

Parameters

Name Type Description
widgetID LONGINT The ID as shown in the 'Edit Plugin Definition' Dialog under Parameters->Column #
index LONGINT The 0-based index of the item
outId STRING Output parameter. The id of the item (if not overwritten, same as outText)
outText STRING Output parameter. The text of the item.

Version

Availability: from All Versions

This is drop-in function.

Category