Search
TableNode.Scrollable Property
See Also
 

Gets or sets a value indicating whether users are allowed to scroll table rows.

Namespace: MindFusion.Diagramming
Assembly: MindFusion.Diagramming

 Syntax

C#  Copy Code

public bool Scrollable { get; set; }

Visual Basic  Copy Code

Public Property Scrollable As Boolean

 Property Value

true to allow scrolling the table up or down, or false otherwise. Initialized with the value of TablesScrollable.

 Remarks

A button containing up and down arrows appears in the caption bar of a table for which scrolling is enabled. If a user clicks these arrows, table rows scroll up or down. The table can always be scrolled programmatically using the CurrentScrollRow property.

The appearance of the scroll icons can be customized by setting Renderers.ScrollIconRenderer.

 See Also