Enum DiagramCollapseIcons
Specifies the shape of the Collapse Icon.
Namespace: Syncfusion.Blazor.Diagram
Assembly: Syncfusion.Blazor.dll
Syntax
public enum DiagramCollapseIcons
Remarks
To know more about using icon shapes, refer to the icons. To apply the Plus icon shape, use the below code
Examples
Node Node1 = new Node()
{
CollapseIcon = new DiagramCollapseIcon() {
Shape = DiagramCollapseIcons.Plus,
}
};
Fields
| Name | Description |
|---|---|
| ArrowUp | "The shape of the icon is set to Arrow shape facing upwards " |
| None | "The shape of the icon is set to None" |
| Path | "The shape of the icon is set to path shape" |
| Plus | "The shape of the icon is set to Plus shape" |
| Template | "The shape of the icon is set to Template shape" |