New to Telerik UI for WPFStart a free 30-day trial

Represents a handler for determining the position of table rows within a document.

Definition

Constructors

C#
public TableRowPositionHandler(LayoutBox box, LayoutBox childBox)
Parameters:boxLayoutBoxchildBoxLayoutBox
C#
public TableRowPositionHandler(LayoutBox box)
Parameters:boxLayoutBox

Properties

Determines whether the specified table row can be moved to the next position.

C#
public override bool CanMoveToNext { get; }

Overrides: ContainerPositionHandler.CanMoveToNext

Determines whether the specified table row can be moved to the previous position in the document.

C#
public override bool CanMoveToPrevious { get; }

Overrides: ContainerPositionHandler.CanMoveToPrevious

Methods

Creates a deep copy of the current TableRowPositionHandler instance.

C#
public override PositionHandler Clone()
Returns:

PositionHandler

Overrides: ContainerPositionHandler.Clone()

Moves the table row position to the first row in the table.

C#
public override void MoveToFirst()

Overrides: ContainerPositionHandler.MoveToFirst()

Moves the cursor or selection to the last position within the table row.

C#
public override void MoveToLast()

Overrides: ContainerPositionHandler.MoveToLast()

Moves the position of the table row to the next row in the document.

C#
public override void MoveToNext()

Overrides: ContainerPositionHandler.MoveToNext()

Moves the table row position to the previous row in the collection.

C#
public override void MoveToPrevious()

Overrides: ContainerPositionHandler.MoveToPrevious()