Specifies the ID of the DiagramView that should be displayed in this control.
Namespace: MindFusion.Diagramming.WebForms
Package: MindFusion.Diagramming.WebForms
C# Copy Code |
---|
public string DiagramViewID { get; set; } |
Visual Basic Copy Code |
---|
Public Property DiagramViewID As String |
An ID of the corresponding DiagramView instance associated with this Overview object.
Use this property to bind the overview control to a DiagramView using it as an attribute of the <Overview> element in the aspx page. The DiagramView property lets you do that from code, for example in the Page_Load event handler.
<ndiag:DiagramView ID="diagView" runat="server" .../>
<ndiag:Overview ID="overview" runat="server" DiagramViewID="diagView" .../>