Search Results for

    Show / Hide Table of Contents

    Struct ScrollRange

    A simple struct to store minimum and maximum Double type values for the scroll range

    Inherited Members
    ValueType.Equals(Object)
    ValueType.GetHashCode()
    ValueType.ToString()
    Object.Equals(Object, Object)
    Object.GetType()
    Object.ReferenceEquals(Object, Object)
    Namespace: ZedGraph
    Assembly: ZedGraph.dll
    Syntax
    public struct ScrollRange

    Constructors

    | Improve this Doc View Source

    ScrollRange(Boolean)

    Sets the scroll range to default values of zero, and sets the IsScrollable property as specified.

    Declaration
    public ScrollRange(bool isScrollable)
    Parameters
    Type Name Description
    Boolean isScrollable

    true to make this item scrollable, false otherwise

    | Improve this Doc View Source

    ScrollRange(Double, Double, Boolean)

    Construct a ScrollRange object given the specified data values.

    Declaration
    public ScrollRange(double min, double max, bool isScrollable)
    Parameters
    Type Name Description
    Double min

    The minimum axis value limit for the scroll bar

    Double max

    The maximum axis value limit for the scroll bar

    Boolean isScrollable

    true to make this item scrollable, false otherwise

    | Improve this Doc View Source

    ScrollRange(ScrollRange)

    The Copy Constructor

    Declaration
    public ScrollRange(ScrollRange rhs)
    Parameters
    Type Name Description
    ScrollRange rhs

    The ScrollRange object from which to copy

    Properties

    | Improve this Doc View Source

    IsScrollable

    Gets or sets a property that determines if the Axis corresponding to this ScrollRange object can be scrolled.

    Declaration
    public bool IsScrollable { get; set; }
    Property Value
    Type Description
    Boolean
    | Improve this Doc View Source

    Max

    The maximum axis value limit for the scroll bar.

    Declaration
    public double Max { get; set; }
    Property Value
    Type Description
    Double
    | Improve this Doc View Source

    Min

    The minimum axis value limit for the scroll bar.

    Declaration
    public double Min { get; set; }
    Property Value
    Type Description
    Double
    • Improve this Doc
    • View Source
    In This Article
    Back to top Generated by DocFX