Search
FlowChart.FindGroup Method
See Also
 



Finds a group whose Tag matches the specified value.

 Syntax

VB6  Copy Code

Public Function FindGroup( _
    ByVal Tag As Long _
) As Group

C++  Copy Code

public:
Group* FindGroup (
    int Tag
)

 Parameters

Tag
The tag of the searched group.

 Return Value

A reference to a Group object, which is the first group found with the requested tag, or null reference (Nothing in Visual Basic) if none is found.

 Remarks

Gets the group with the specified tag.

 See Also