Return item index for the specified object (or zero if not found).
FUNCTION GetImagePopupObjectItemIndex(
dialogID : LONGINT;
componentID : LONGINT;
objectName : STRING): INTEGER;def vs.GetImagePopupObjectItemIndex(dialogID: int, componentID: int, objectName: str):
return int| Name | Type | Description |
|---|---|---|
| dialogID | LONGINT | Index to the dialog layout that contains the image popup component. |
| componentID | LONGINT | Index to a specific image popup component. |
| objectName | STRING | Name of object for which the image popup index should be retrieved. |
==== VectorScript ====
imagePopupIndex := GetImagePopupObjectItemIndex(dialogID, componentID, 'Symbol-1');==== Python ====
imagePopupIndex = vs.GetImagePopupObjectItemIndex(dialogID, componentID, 'Symbol-1')
vs.SetImagePopupSelectedItem(dialogID, componentID, imagePopupIndex)VS Functions: InsertImagePopupObjectItem | GetNumImagePopupItems | GetImagePopupObject | SetImagePopupSelectedItem | GetImagePopupSelectedItem | RemoveImagePopupItem | RemoveAllImagePopupItems
Availability: from VectorWorks10.0
- Dialogs - Modern