Search
Overview.DiagramViewID Property
See Also
 





Specifies the ID of the DiagramView that should be displayed in this control.

Namespace: MindFusion.Diagramming.WebForms
Package: MindFusion.Diagramming.WebForms

 Syntax

C#  Copy Code

public string DiagramViewID { get; set; }

Visual Basic  Copy Code

Public Property DiagramViewID As String

 Property Value

An ID of the corresponding DiagramView instance associated with this Overview object.

 Remarks

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.

 Example

<ndiag:DiagramView ID="diagView" runat="server" .../>

<ndiag:Overview ID="overview" runat="server" DiagramViewID="diagView" .../>

 See Also