Search
Box.WindowFrame Property
See Also
 



Gets or sets the border style of the window in which a hosted ActiveX control resides.

 Syntax

VB6  Copy Code

Public Property Get WindowFrame() As ECellBorders
Public Property Let WindowFrame( _
    ByVal Value As ECellBorders _
)

C++  Copy Code

public:
ECellBorders get_WindowFrame ()
void put_WindowFrame (
    ECellBorders value
)

 Property Value

A member of the ECellBorders enumeration. Initialized with FlowChart.BoxWindowFrame.

 Remarks

This property is useful for boxes whose Style is set to bsAxControl. The following values can be assigned to it:

cbNone

Do not draw borders around the hosted control.

cbSimple

Draw simple borders around the control.

cbSystem3D

Draw borders as 3D edges using the system 3D colors.

 See Also