Search
Shape.Id Property
See Also
 





Gets or sets the shape identifier.

Namespace: MindFusion.Diagramming
Package: MindFusion.Diagramming

 Syntax

C#  Copy Code

public string Id { get; set; }

Visual Basic  Copy Code

Public Property Id As String

 Property Value

A string id that has been passed as an argument of the Shape constructor.

 Remarks

Once assigned through the constructor, the shape identifier should not be changed, that is, do not use the set accessor of this property. To get the shape with a specified id, call the static FromId method.

 See Also