Class SelectedItems
Inherited Members
System.Object.ToString()
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
Namespace: Syncfusion.JavaScript.DataVisualization.Models.Diagram
Assembly: Syncfusion.EJ.dll
Syntax
public class SelectedItems : EJTagHelper
Constructors
SelectedItems()
Declaration
public SelectedItems()
Properties
Constraints
Gets or sets Controls the visibility of selector
Declaration
[JsonConverter(typeof(StringEnumConverter))]
[JsonProperty("constraints")]
public SelectorConstraints Constraints { get; set; }
Property Value
Type | Description |
---|---|
SelectorConstraints | SelectorConstraints.All |
Examples
DiagramProperties Model = new DiagramProperties();
Model.SelectedItems.Constraints = SelectorConstraints.UserHandles;
Tooltip
Gets or sets the angle to rotate the selected items
Declaration
[JsonProperty("tooltip")]
public Tooltip Tooltip { get; set; }
Property Value
Type | Description |
---|---|
Tooltip | Tooltip |
Examples
DiagramProperties Model = new DiagramProperties();
Tooltip Tooltip = new Tooltip() { Alignment = new Alignment() { Vertical = VerticalAlignment.Stretch } };
Model.SelectedItems.Tooltip = Tooltip;