Functions for Separating Groups and Views Data

GetAllGroups Function

GetAllViews Function

GetGroup Function

GetGroupsTree Function

GetView Function

GetViewsTree Function

GetAllGroups Function

The GetAllGroups function separates data on all groups defined in the project.

Declaration:

GetAllGroups( TCollection<TGroup> GroupData )

Parameters:

GroupData - variable in which data on one or more groups is stored,

Example:

#{ GetAllGroups( GroupData ) }#

GetAllViews Function

The GetAllViews function separates data on all views defined in the project.

Declaration:

GetAllViews( TCollection<TView> ViewData )

Parameters:

ViewData - variable in which the data generated are stored.

Example:

#{ GetAllViews( ViewData ) }#

GetGroup Function

The GetGroup function separates data on the content of the group assigned.

Declaration:

GetGroup( TGroup GroupData, string GroupName )

Parameters:

GroupData - variable in which data on one or more groups are stored,

GroupName - name of the group whose content is searched for.

Example:

#{ GetGroup( GroupData, "MathFunctions" ) }#

GetGroupsTree Function

The GetGroupTree function separates data on the group assigned or on all groups directly or indirectly included in it (the order of data generated corresponds to the preorder order of the tree tour).

Declaration:

GetGroupsTree( TCollection<TGroup> GroupData, string GroupName )

Parameters:

GroupData - variable in which data on one or more groups are stored,

GroupName - name of the group whose content is searched for.

Example:

#{ GetGroupTree( GroupData, "MathFunctions" ) }#

GetView Function

The GetView function separates data on the view assigned.

Declaration:

GetView( TView ViewData, string ViewName )

Parameters:

ViewData - variable in which the data generated are stored,

ViewName - name of the view whose content is searched for.

Example:

#{ GetView( ViewData, "RedusedView" ) }#

GetViewsTree Function

The GetViewTree function separates data on the view assigned and on all views which are directly or indirectly included in this view (the order of data generated corresponds to the preorder order of the tree tour).

Declaration:

GetViewsTree( TCollection<TView> ViewData, string ViewName )

Parameters:

ViewData - variable in which the data generated are stored,

ViewName - name of the view whose content is searched for.

Example:

#{ GetViewsTree( ViewData, "RedusedView" ) }#