Search:     Advanced search

Function IsChild

Article ID: 269
Last updated: 23 Sep, 2010
Views: 767
Posted: 08 Aug, 2008
by Ramsey M.
Updated: 23 Sep, 2010
by Murray D.

Description:

Function IsChild: Boolean;

Returns the true if the item belongs to another Item, false if it is a root level item.

Code:

Delphi:
If ischild then

      Showmessage(oitem.owner.name)

  Else

      Showmessage(oitem.tab.name);

VBA:
If ischild then

      Msgbox(oitem.owner.name)

Else

      Msgbox(oitem.tab.name)

End if

Notes:

IPlanCenter Heirarchy Map


PlanSwift Enterprise 8.2 or later

This article was:  
Prev  Not what you're looking for? Suggest a topic  Next
Function Owner     Function Tab