Class CellsBuilder
A builder class that holds cell menu items.
Inheritance
System.Object
CellsBuilder
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
Assembly: Syncfusion.EJ.dll
Syntax
public class CellsBuilder
Constructors
CellsBuilder()
Initializes a new instance of the CellsBuilder class.
Declaration
public CellsBuilder()
CellsBuilder(Schedule)
Initializes a new instance of the CellsBuilder class.
Declaration
public CellsBuilder(Schedule cells)
Parameters
Type | Name | Description |
---|---|---|
Schedule | cells | It accepts the cell menu items and displays on context menu. |
Methods
Add()
It adds the appointment menu items to the context menu.
Declaration
public void Add()
Id(String)
This fields stores the id value for a cell menu item.
Declaration
public CellsBuilder Id(string id)
Parameters
Type | Name | Description |
---|---|---|
System.String | id | It accepts the id value of a cell menu item. |
Returns
Type | Description |
---|---|
CellsBuilder |
ParentId(String)
This fields stores the parent id value for a cell menu item.
Declaration
public CellsBuilder ParentId(string parentId)
Parameters
Type | Name | Description |
---|---|---|
System.String | parentId | It accepts the parent id value for a cell menu item. |
Returns
Type | Description |
---|---|
CellsBuilder |
Text(String)
This fields stores the text value for a cell menu item.
Declaration
public CellsBuilder Text(string text)
Parameters
Type | Name | Description |
---|---|---|
System.String | text | It accepts the text value of a cell menu item. |
Returns
Type | Description |
---|---|
CellsBuilder |