Search
Box.GetShape Method
See Also
 



Returns the id of a shape from custom shape library if one is assigned to this box.

 Syntax

VB6  Copy Code

Public Sub GetShape( _
    ByRef libGUID As String, _
    ByRef shape As Long _
)

C++  Copy Code

public:
void GetShape (
    BSTR* libGUID,
    int* shape
)

 Parameters

libGUID
A class identifier designating a loaded shape library.
shape
An index of a shape in the shape library.

 Remarks

If the box uses a shape from a custom shape library, this method returns the identifier of the library and the index of the custom shape. These parameters are usually set with previous call to SetShape. FlowChartX displays the custom shape only if the box Style is set to bsLibShape.

 See Also