Class PersistentScrollInfoChangedEventArgs
Arguments passed in the PersistentScrollInfoChanged event.
Inherited Members
Namespace: Sdl.DesktopEditor.EditorApi
Assembly: Sdl.DesktopEditor.EditorApi.dll
Syntax
public class PersistentScrollInfoChangedEventArgs : EventArgs
Constructors
PersistentScrollInfoChangedEventArgs()
Default constructor.
Declaration
public PersistentScrollInfoChangedEventArgs()
PersistentScrollInfoChangedEventArgs(long, long, long, long)
Construct from explicit values.
Declaration
public PersistentScrollInfoChangedEventArgs(long oldRowNumber, long oldOffset, long newRowNumber, long newOffset)
Parameters
| Type | Name | Description |
|---|---|---|
| long | oldRowNumber | |
| long | oldOffset | |
| long | newRowNumber | |
| long | newOffset |
Properties
NewOffset
The new value for TopmostVisibleRowScrollOffset.
Declaration
public long NewOffset { get; set; }
Property Value
| Type | Description |
|---|---|
| long |
NewRowNumber
The new value for TopmostVisibleRowNumber.
Declaration
public long NewRowNumber { get; set; }
Property Value
| Type | Description |
|---|---|
| long |
OldOffset
The previous value for TopmostVisibleRowScrollOffset.
Declaration
public long OldOffset { get; set; }
Property Value
| Type | Description |
|---|---|
| long |
OldRowNumber
The previous value for TopmostVisibleRowNumber.
Declaration
public long OldRowNumber { get; set; }
Property Value
| Type | Description |
|---|---|
| long |