Search
Ruler.Document Property
See Also
 



Gets or sets the FlowChart document this ruler is associated with.

 Syntax

VB6  Copy Code

Public Property Get Document() As FlowChart
Public Property Let Document( _
    ByVal value As FlowChart _
)

C++  Copy Code

public:
FlowChart* get_Document ()
void put_Document (
    FlowChart* value
)

 Property Value

A FlowChart instance.

 Remarks

The Ruler control does not act as an ActiveX control container, but it and the FlowChart are siblings in the form's hierarchy. As such, make sure the ruler is behind the flowchart in the form's Z order, by using form editor's commands such as "bring to back". Once this property is set, the ruler automatically resizes the flowchart to make it fit between the ruler scales.

 See Also