Search
Overview.Document Property
See Also
 



Gets or sets the FlowChart whose contents to display in the Overview control.

 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 reference to a FlowChart instance.

 Remarks

Most development environments do not show this property in their property browser and it can be set only via code. A suitable place for that is the Load event handler for the form containing the Overview control.

 See Also