menu

Blazor

  • Code Examples
  • Upgrade Guide
  • User Guide
  • Demos
  • Support
  • Forums
  • Download
Class BpmnDataStore - Blazor API Reference | Syncfusion

    Show / Hide Table of Contents

    Class BpmnDataStore

    Represents the storing or access of data associated with business processes.

    Inheritance
    System.Object
    DiagramObject
    Shape
    BpmnDataStore
    Implements
    IDiagramObject
    System.ICloneable
    Inherited Members
    DiagramObject.GetParent()
    DiagramObject.OnPropertyChanged(String, Object, Object, IDiagramObject)
    Shape.Type
    Namespace: Syncfusion.Blazor.Diagram
    Assembly: Syncfusion.Blazor.dll
    Syntax
    public class BpmnDataStore : Shape, IDiagramObject, ICloneable
    Remarks

    The BpmnDataStore can be used to depict data storing mechanisms in a business process model.

    It is a part of the BPMN shapes used to illustrate the different activities within a process.

    Examples
    Node node = new Node()
    {
        ID = "node1",          
        Width = 70,
        Height = 70, 
        OffsetX = 100,
        OffsetY = 300,
        Shape = new BpmnDataStore()
    };

    Constructors

    BpmnDataStore()

    Initializes a new instance of the BpmnDataStore class.

    Declaration
    public BpmnDataStore()

    Methods

    Clone()

    Creates a new BpmnDataStore that is a copy of the current BpmnDataStore.

    Declaration
    public override object Clone()
    Returns
    Type Description
    System.Object

    A new instance of BpmnDataStore with the same property values.

    Overrides
    Shape.Clone()

    Implements

    IDiagramObject
    System.ICloneable
    Back to top Generated by DocFX
    Copyright © 2001 - 2025 Syncfusion Inc. All Rights Reserved