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