Search
Box.AllowContainment Property
See Also
 



( a feature of FlowChartX Pro edition)

Gets or sets a value indicating whether users are allowed to put this box in a container.

 Syntax

VB6  Copy Code

Public Property Get AllowContainment() As Boolean
Public Property Let AllowContainment( _
    ByVal value As Boolean _
)

C++  Copy Code

public:
bool get_AllowContainment ()
void put_AllowContainment (
    bool value
)

 Property Value

A boolean value. The default is true.

 Remarks

Containers are boxes that can hold other diagram nodes inside them. Disable this property for a box to prevent that box to be placed in a container. To make a box container, set its Style to bsContainer.

 See Also