<< CreateLanguageEngineList | CreatePath >> |
Top: Documentation Library | Up: C Commands |
CreateList Dialog Box Command
Gets the {...} .
listh = CreateList ()
Parameters:
Results:
Notes:
See Also:
AlertRequester, AppendListString, CloseResource, CreateLanguageEngineList, CreateRequester, DoLanguageEngineFormatDate, DoLanguageEngineLocalizeString, DoRequester, FreeLanguageEngineList, FreeList, FreeRequester, GetCmdStringFromCoord, GetControlAttr, GetCoordFromString, GetFolderPath, GetResourceString, GetUIStringFromCoord, OpenResource, PrependListString, SetControlAttr, SortList
Examples:
Additional example in ''RequesterExample.py''.
Python:
ARexx:
Applescript:
CreateList Command Definition url:PGScmd/createlist
created:2006-05-04 17:24:07 last updated:2006-09-14 09:43:23
Copyright © 1985-2024 GrasshopperLLC. All Rights Reserved.
User Contributed Comments For CreateList | sign in to add a comment |
Tim Doty wrote... | 2007-05-26 16:31:58 |
Python: lelistH = CreateLanguageEngineList()['.result']
# setup the month drop down menus monthListH = CreateList()['.result'] for month in ['January', 'February', 'March', 'April', 'May', 'June', 'July', 'August', 'September', 'October', 'November', 'December']: AppendListString(monthListH, DoLanguageEngineLocalizeString(lelistH, langName, month)['.result']) SetControlAttr(reqH, 21, ControlAttr_List, monthListH) SetControlAttr(reqH, 31, ControlAttr_List, monthListH) FreeList(monthListH) | |
User Contributed Comments For CreateList | sign in to add a comment |
<< CreateLanguageEngineList | CreatePath >> |
Top: Documentation Library | Up: C Commands |