Specifies the style of a box; the enumeration members are used as values of the Style property of boxes.
SyntaxVB6
Copy Code
|
|---|
Public Enum EBoxStyle |
C++
Copy Code
|
|---|
enum EBoxStyle |
Members| Member name | Value | Description | |
|---|---|---|---|
![]() |
bsRect |
0 | The box has rectangular form. |
![]() |
bsEllipse |
1 | The box has elliptic form. |
![]() |
bsRoundRect |
2 | The box is rectangle with rounded corners. |
![]() |
bsRhombus |
3 | The box has the shape of a rhombus. |
![]() |
bsPolygon |
4 | Any polygonal shape can be assigned to the box. See SetPolyShape for details. Additionally, you can choose from more than 50 predefined shapes - consult LoadPredefShape for further details. |
![]() |
bsDelay |
5 | 'D'-like symbol denoting delay in process diagrams. |
![]() |
bsLibShape |
6 | The box shape is loaded from a shape library. Shape libraries are dlls that can be plugged into the FlowChartX rendering engine. You can create your own libraries or download some from MindFusion's web site. For additional information, check the Using Custom Shape Libraries topic. |
![]() |
bsContainer |
7 | The box can contain other objects; the contained objects are automatically arranged inside their container when new items are added or removed. |
![]() |
bsAxControl |
8 | The box hosts an ActiveX control, whose class identifier is specified via AxControlId. Check Hosting ActiveX Controls for more information. |
![]() |
bsWindow |
9 | The box contains a window. Call the BindToControl method to bind a box to an existing window handle. |
![]() |
bsShape |
10 | A shape template consisting of straight or curved outline, decorations, text region definition and default anchor point pattern can be assigned to the Shape property of boxes. If no shape is assigned to a box, the DefaultShape property is used. |
See Also