Search:     Advanced search

IItem

Article ID: 177
Last updated: 23 Sep, 2010
Views: 822
Posted: 24 Jul, 2008
by Ramsey M.
Updated: 23 Sep, 2010
by Murray D.

Description:

IItem(Index: integer): IPage, read only, Default Property 
The item property is a 0 based array that provides access to the individual page objects.  Because it is the default property of the pages object, the statement opages.item(1) and opages(1) are identical.

Code:

Delphi:
opage := pc.pages(1)
or
opage := pc.pages.item(1);

VBA:
set opage = pc.pages(1)
or
set opage = pc.pages.item(1)

Notes:

IPlanCenter Heirarchy Map


PlanSwift Enterprise 8.2 or later

This article was:  
Prev  Not what you're looking for? Suggest a topic  Next
3.1.1 - IPages     Count