This documentation was styled with a demo skin from the Premium Pack 4 add-on for Help & Manual. The contents of the skin are encrypted and not configurable. You can only publish HM projects with this skin. You cannot edit it or change it.
This version is copyright and may only be used for local testing purposes. It may not be distributed.
Please purchase the full version of the Premium Pack to get the configurable skins and remove this notice. The package will also include the Toolbox configuration utility for Premium Pack skins.
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)