Search
FlowChart.FindBox Method
See Also
 



Finds a box whose Tag matches the specified value.

 Syntax

VB6  Copy Code

Public Function FindBox( _
    ByVal nTag As Long _
) As Box

C++  Copy Code

public:
Box* FindBox (
    int nTag
)

 Parameters

nTag
The tag of the searched box.

 Return Value

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

 See Also