ASP.NET MVC

Upgrade Guide User Guide Demos Support Forums Download
  • Upgrade Guide
  • User Guide
  • Demos
  • Support
  • Forums
  • Download
Class SelectedItems - ASP.NETMVC API Reference | Syncfusion

    Show / Hide Table of Contents

    Class SelectedItems

    Inheritance
    System.Object
    EJTagHelper
    SelectedItems
    Inherited Members
    EJTagHelper.GetControlDetails()
    EJTagHelper.GetControlDetails(String)
    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
    [JsonProperty("constraints")]
    [JsonConverter(typeof(StringEnumConverter))]
    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;
    Back to top Generated by DocFX
    Copyright © 2001 - 2022 Syncfusion Inc. All Rights Reserved