GridViewOffsetScroller
Namespace: TagBites.WinSchedulers.Sections
Assembly: TagBites.WinSchedulers.dll
Product: TagBites.WinSchedulers v. 1.3.8
Provides the base class from which the classes that represent elements with offset scroll are derived.
public abstract class GridViewOffsetScroller : TagBites.WinSchedulers.Sections.GridViewScrollerInheritance: object → GridViewElement → GridViewScroller → GridViewOffsetScroller
Derived:
Properties
Section titled “Properties”ExtentSize
Section titled “ExtentSize”Gets the size of all the content for display.
public virtual double ExtentSize { get; }Property Value
Section titled “Property Value”NormalizedOffset
Section titled “NormalizedOffset”Gets a value that contains percent of the offset of the scrolled content. Valid values are between zero and one.
public double NormalizedOffset { get; set; }Property Value
Section titled “Property Value”Offset
Section titled “Offset”Gets a value that contains the offset of the scrolled content. Valid values are between zero and the ScrollableSize.
public double Offset { get; set; }Property Value
Section titled “Property Value”ScrollableSize
Section titled “ScrollableSize”Gets a value that represents the size of the area that can be scrolled; the difference between the size of the extent and the size of the viewport.
public double ScrollableSize { get; }Property Value
Section titled “Property Value”Methods
Section titled “Methods”Scroll(double)
Section titled “Scroll(double)”When overridden in a derived class, shifts the content by indicated value of the shift.
public virtual void Scroll(double shift)Parameters
Section titled “Parameters”shiftdouble
The value by which the content is shifted.
Events
Section titled “Events”OffsetChanged
Section titled “OffsetChanged”Occurs when the Offset changed.
public EventHandler OffsetChanged