Search:     Advanced search

Item

Article ID: 222
Last updated: 23 Sep, 2010
Views: 831
Posted: 06 Aug, 2008
by Ramsey M.
Updated: 23 Sep, 2010
by Murray D.

Description:

Item(Index: integer): IPropertyObject, read only, Default Property 

The item property is a 0 based array that provides access to the individual propertyobjects .  Because it is the default property of the properties object, the statement properties.item(1) and properties(1) are identical.

Code:

Delphi:
oprop := oprops(1)
or
oprop := oprops.item(1);

VBA:
set oprop = oprops(1)
or
set oprop = oprops.item(1)

Notes:

{See Also: PropertyObject}

IPlanCenter Heirarchy Map


PlanSwift Enterprise 8.2 or later

This article was:  
Also read
document IPropertyObject

Prev  Not what you're looking for? Suggest a topic  Next
3.1.2.1a - IProperties     3.1.2.1b IPropertyObject