ActiveReports Developer 7
OnMove Method
See Also 
GrapeCity.ActiveReports.Extensibility.v7 Assembly > GrapeCity.ActiveReports.Extensibility.Rendering.Components Namespace > IReportItem Interface : OnMove Method

reportItem
The report item that was moved.
target
The report item that this report item was moved into.
xPosition
The x position of the move.
yPosition
The y position of the move.

Glossary Item Box

Wrapper for the OnMove event

Syntax

Visual Basic (Declaration) 
Function OnMove( _
   ByVal reportItem As IReportItem, _
   ByVal target As IReportItem, _
   ByVal xPosition As System.Integer, _
   ByVal yPosition As System.Integer _
) As ChangeResult
C# 
ChangeResult OnMove( 
   IReportItem reportItem,
   IReportItem target,
   System.int xPosition,
   System.int yPosition
)

Parameters

reportItem
The report item that was moved.
target
The report item that this report item was moved into.
xPosition
The x position of the move.
yPosition
The y position of the move.

Return Value

The change result of the move.

See Also