Class BoundaryConstraints
Allows users to specify the region of the diagram in which they can interact with it.
Inheritance
System.Object
BoundaryConstraints
Namespace: Syncfusion.Blazor.Diagram
Assembly: Syncfusion.Blazor.dll
Syntax
public sealed class BoundaryConstraints : Enum
Examples
<PageSettings @bind-BoundaryConstraints="@constraints" >
</PageSettings>
@code
{
BoundaryConstraints constraints = BoundaryConstraints.Diagram;
}
Fields
Diagram
Allow interactions to take place inside the diagram height and width.
Declaration
public const BoundaryConstraints Diagram
Field Value
Type |
---|
BoundaryConstraints |
Infinity
Allow interactions to take place at the infinite height and width of the diagram region.
Declaration
public const BoundaryConstraints Infinity
Field Value
Type |
---|
BoundaryConstraints |
Page
Allow interactions to take place around the height and width mentioned in the page settings.
Declaration
public const BoundaryConstraints Page
Field Value
Type |
---|
BoundaryConstraints |