Blazor

  • Code Examples
  • Upgrade Guide
  • User Guide
  • Demos
  • Support
  • Forums
  • Download
Class FlowShapes

    Show / Hide Table of Contents

    Class FlowShapes

    Specifies the type of process flow used for analyzing designing and managing for documentation process.

    Inheritance
    System.Object
    FlowShapes
    Namespace: Syncfusion.Blazor.Diagrams
    Assembly: Syncfusion.Blazor.dll
    Syntax
    public sealed class FlowShapes : Enum
    Remarks
    1. SymbolPalette
    2. Shapes
    To apply flow shape, use the below code.
    Examples
    <SfDiagram Height="600px" Nodes="@NodeCollection"/>
    @code{
       //Initialize node collection with node
       ObservableCollection<DiagramNode> NodeCollection = new ObservableCollection<DiagramNode>()
       {
            //Creates a flow shape node
            new DiagramNode()
            {
                Id="node1",
                //Size of the node
                Height=100,
                Width=100,
                //Position of the node
                OffsetX=100,
                OffsetY=100,
                //Sets the type of the shape as flow
                Shape=new DiagramShape()
                {
                    Type=Shapes.Flow,
                    FlowShape=FlowShapes.DirectData
                }
            }
       };
    }

    Fields

    Annotation

    Sets the flow shape type as Annotation.

    Declaration
    public const FlowShapes Annotation
    Field Value
    Type Description
    FlowShapes

    Annotation2

    Sets the flow shape type as Annotation2.

    Declaration
    public const FlowShapes Annotation2
    Field Value
    Type Description
    FlowShapes

    Card

    Sets the flow shape type as Card.

    Declaration
    public const FlowShapes Card
    Field Value
    Type Description
    FlowShapes

    Collate

    Sets the flow shape type as Collate.

    Declaration
    public const FlowShapes Collate
    Field Value
    Type Description
    FlowShapes

    Data

    Sets the flow shape type as Data.

    Declaration
    public const FlowShapes Data
    Field Value
    Type Description
    FlowShapes

    Decision

    Sets the flow shape type as Decision.

    Declaration
    public const FlowShapes Decision
    Field Value
    Type Description
    FlowShapes

    Delay

    Sets the flow shape type as Delay.

    Declaration
    public const FlowShapes Delay
    Field Value
    Type Description
    FlowShapes

    DirectData

    Sets the flow shape type as DirectData.

    Declaration
    public const FlowShapes DirectData
    Field Value
    Type Description
    FlowShapes

    Display

    Sets the flow shape type as Display.

    Declaration
    public const FlowShapes Display
    Field Value
    Type Description
    FlowShapes

    Document

    Sets the flow shape type as Document.

    Declaration
    public const FlowShapes Document
    Field Value
    Type Description
    FlowShapes

    Extract

    Sets the flow shape type as Extract.

    Declaration
    public const FlowShapes Extract
    Field Value
    Type Description
    FlowShapes

    LoopLimit

    Sets the flow shape type as LoopLimit.

    Declaration
    public const FlowShapes LoopLimit
    Field Value
    Type Description
    FlowShapes

    ManualInput

    Sets the flow shape type as ManualInput.

    Declaration
    public const FlowShapes ManualInput
    Field Value
    Type Description
    FlowShapes

    ManualOperation

    Sets the flow shape type as ManualOperation.

    Declaration
    public const FlowShapes ManualOperation
    Field Value
    Type Description
    FlowShapes

    Merge

    Sets the flow shape type as Merge.

    Declaration
    public const FlowShapes Merge
    Field Value
    Type Description
    FlowShapes

    MultiDocument

    Sets the flow shape type as MultiDocument.

    Declaration
    public const FlowShapes MultiDocument
    Field Value
    Type Description
    FlowShapes

    OffPageReference

    Sets the flow shape type as OffPageReference.

    Declaration
    public const FlowShapes OffPageReference
    Field Value
    Type Description
    FlowShapes

    Or

    Sets the flow shape type as Or.

    Declaration
    public const FlowShapes Or
    Field Value
    Type Description
    FlowShapes

    PaperTap

    Sets the flow shape type as PaperTap.

    Declaration
    public const FlowShapes PaperTap
    Field Value
    Type Description
    FlowShapes

    PreDefinedProcess

    Sets the flow shape type as PreDefinedProcess.

    Declaration
    public const FlowShapes PreDefinedProcess
    Field Value
    Type Description
    FlowShapes

    Preparation

    Sets the flow shape type as Preparation.

    Declaration
    public const FlowShapes Preparation
    Field Value
    Type Description
    FlowShapes

    Process

    Sets the flow shape type as Process.

    Declaration
    public const FlowShapes Process
    Field Value
    Type Description
    FlowShapes

    SequentialAccessStorage

    Sets the flow shape type as SequentialAccessStorage.

    Declaration
    public const FlowShapes SequentialAccessStorage
    Field Value
    Type Description
    FlowShapes

    SequentialData

    Sets the flow shape type as SequentialData.

    Declaration
    public const FlowShapes SequentialData
    Field Value
    Type Description
    FlowShapes

    Sort

    Sets the flow shape type as Sort.

    Declaration
    public const FlowShapes Sort
    Field Value
    Type Description
    FlowShapes

    StoredData

    Sets the flow shape type as stored data.

    Declaration
    public const FlowShapes StoredData
    Field Value
    Type Description
    FlowShapes

    SummingJunction

    Sets the flow shape type as SummingJunction.

    Declaration
    public const FlowShapes SummingJunction
    Field Value
    Type Description
    FlowShapes

    Terminator

    Sets the flow shape type as Terminator.

    Declaration
    public const FlowShapes Terminator
    Field Value
    Type Description
    FlowShapes

    value__

    Declaration
    public int value__
    Field Value
    Type Description
    System.Int32
    Back to top Generated by DocFX
    Copyright © 2001 - 2023 Syncfusion Inc. All Rights Reserved