<< Click to Display Table of Contents >> Navigation: ThinBASIC Modules > UI (User Interface) > CONTROLS > Control Types > PropertyList Control > PropertyList Control Commands > PropertyRoot_ItemAdd |
Description
Adds a new property item to a property list control.
Syntax
n = PropertyRoot_ItemAdd(pRoot, ptrToPropertyItem)
Returns
Number
Parameters
Name |
Type |
Optional |
Meaning |
pRoot |
Number |
No |
A pointer to a property linked list root |
ptrToPropertyItem |
Number |
No |
A pointer to a PropertyItem structure. Use VARPTR to calculate pointer to PropertyItem structure. |
Remarks
Restrictions
See also
See PropertyItem structure.
Examples
Local pItem As propertyitem
local pRoot As Long
pRoot = PropertyRoot_Create
pItem.propName = "Caption"
pItem.curValue = "Test application"
pItem.nItemType = %PIT_EDIT
pItem.cmbItems = ""
PROPERTYROOT_ItemAdd pRoot, VARPTR(pItem)