Class DiagramExpandIcons
Specifies the shape of the Expand Icon.
Inheritance
System.Object
DiagramExpandIcons
Namespace: Syncfusion.Blazor.Diagram
Assembly: Syncfusion.Blazor.dll
Syntax
public sealed class DiagramExpandIcons : Enum
Remarks
To know more about using icon shapes, refer to the icons. To apply the Minus icon shape, use the below code
Examples
Node Node1 = new Node()
{
ExpandIcon = new DiagramExpandIcon() {
Shape = DiagramExpandIcons.Minus,
}
}
Fields
ArrowDown
"The shape of the icon is set to Arrow shape facing downwards"
Declaration
public const DiagramExpandIcons ArrowDown
Field Value
Type |
---|
DiagramExpandIcons |
Minus
"The shape of the icon is set to Minus shape"
Declaration
public const DiagramExpandIcons Minus
Field Value
Type |
---|
DiagramExpandIcons |
None
"The shape of the icon is set to None"
Declaration
public const DiagramExpandIcons None
Field Value
Type |
---|
DiagramExpandIcons |
Path
"The shape of the icon is set to path shape"
Declaration
public const DiagramExpandIcons Path
Field Value
Type |
---|
DiagramExpandIcons |
Template
"The shape of the icon is set to Template shape"
Declaration
public const DiagramExpandIcons Template
Field Value
Type |
---|
DiagramExpandIcons |