Search
Box.RotateContents Property
See Also
 



Gets or sets a value indicating whether the Picture is rotated when the box is rotated.

 Syntax

VB6  Copy Code

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

C++  Copy Code

public:
bool get_RotateContents ()
void put_RotateContents (
    bool value
)

 Property Value

A boolean value. The default is false.

 Remarks

If this property is set to true, the Picture of a box is rotated around the box center at the same angle as of the box rotation. If the property is set to false, the box Picture is clipped by the rotated box outline even if the picture is not rotated.

In FlowChartX versions prior to 4.1.2, the RotateContents property applied to both rotating the picture and the text in a box. In the new version 4.1.2, the RotateContents property enables rotating only the Picture displayed inside a box, and the RotateText property enables rotating the text.

 See Also