Search
Box.Transparent Property
See Also
 



Gets or sets a value indicating whether the box frame lines and interior should be painted.

 Syntax

VB6  Copy Code

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

C++  Copy Code

public:
bool get_Transparent ()
void put_Transparent (
    bool value
)

 Property Value

A boolean value. The default is false.

 Remarks

A transparent box has only its Picture and Text painted. There is no frame drawn around such a box, nor its interior is filled. Possible usages include simulating floating text or images in a FlowChartX document. Optionally, the Shape decoration lines can be drawn for transparent boxes if the respective flag in RenderFlags is enabled.

 See Also