Class ScrollLimitMode
Defines the scrollable region of the diagram.
Inheritance
System.Object
ScrollLimitMode
Namespace: Syncfusion.Blazor.Diagram
Assembly: Syncfusion.Blazor.dll
Syntax
public sealed class ScrollLimitMode : Enum
Examples
<SfDiagramComponent >
<ScrollSettings @bind-ScrollLimit="@scrollLimit">
</ScrollSettings>
</SfDiagramComponent>
@code
{
ScrollLimitMode scrollLimit { get; set; } = ScrollLimitMode.Infinity;
}
Fields
Diagram
Enables scrolling to view the diagram content.
Declaration
public const ScrollLimitMode Diagram
Field Value
Type |
---|
ScrollLimitMode |
Infinity
The Diagram will be extended when we try to scroll the through it.
Declaration
public const ScrollLimitMode Infinity
Field Value
Type |
---|
ScrollLimitMode |
Limited
Enables scrolling to view the specified area.
Declaration
public const ScrollLimitMode Limited
Field Value
Type |
---|
ScrollLimitMode |