Class MenuDesigner.menudata
Represents the MenuDesigner.menudata class
Inheritance
System.Object
MenuDesigner.menudata
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.Web
Assembly: Syncfusion.EJ.Web.dll
Syntax
public class menudata
Constructors
menudata()
Initializes a new instance of MenuDesigner.menudata class
Declaration
public menudata()
menudata(String, String, String)
Initializes a new instance of MenuDesigner.menudata class
Declaration
public menudata(string i, string txt, string pid)
Parameters
Type | Name | Description |
---|---|---|
System.String | i | The identifier |
System.String | txt | The text |
System.String | pid | The parent identifier |
Properties
id
Gets or sets the identifier
Declaration
public string id { get; set; }
Property Value
Type | Description |
---|---|
System.String |
parentId
Gets or sets the parent identifier
Declaration
public string parentId { get; set; }
Property Value
Type | Description |
---|---|
System.String |
text
Gets or sets the text
Declaration
public string text { get; set; }
Property Value
Type | Description |
---|---|
System.String |
Methods
ChildData(Int32)
Represents the method which is used to add the child items to the list
Declaration
public void ChildData(int count)
Parameters
Type | Name | Description |
---|---|---|
System.Int32 | count | The count of items |
getData(Int32)
Represents the method which is used to get the data
Declaration
public List<MenuDesigner.menudata> getData(int count)
Parameters
Type | Name | Description |
---|---|---|
System.Int32 | count | The count of items |
Returns
Type | Description |
---|---|
System.Collections.Generic.List<MenuDesigner.menudata> | This method returns the list of items which is of integer type |