Search Results for

    Show / Hide Table of Contents

    Class MajorTic

    Class that holds the specific properties for the major tics. Inherits from MinorTic.

    Inheritance
    Object
    MinorTic
    MajorTic
    Implements
    ICloneable
    ISerializable
    Inherited Members
    MinorTic.Color
    MinorTic.Size
    MinorTic.ScaledTic(Single)
    MinorTic.IsAllTics
    MinorTic.IsOutside
    MinorTic.IsInside
    MinorTic.IsOpposite
    MinorTic.IsCrossOutside
    MinorTic.IsCrossInside
    MinorTic.PenWidth
    MinorTic.schema
    Object.Equals(Object)
    Object.Equals(Object, Object)
    Object.GetHashCode()
    Object.GetType()
    Object.MemberwiseClone()
    Object.ReferenceEquals(Object, Object)
    Object.ToString()
    Namespace: ZedGraph
    Assembly: ZedGraph.dll
    Syntax
    [Serializable]
    public class MajorTic : MinorTic, ICloneable, ISerializable

    Constructors

    | Improve this Doc View Source

    MajorTic()

    Default constructor for MajorTic.

    Declaration
    public MajorTic()
    | Improve this Doc View Source

    MajorTic(SerializationInfo, StreamingContext)

    Constructor for deserializing objects

    Declaration
    protected MajorTic(SerializationInfo info, StreamingContext context)
    Parameters
    Type Name Description
    SerializationInfo info

    A SerializationInfo instance that defines the serialized data

    StreamingContext context

    A StreamingContext instance that contains the serialized data

    | Improve this Doc View Source

    MajorTic(MajorTic)

    Copy constructor.

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

    The MajorTic that is to be copied.

    Fields

    | Improve this Doc View Source

    schema2

    Current schema value that defines the version of the serialized file

    Declaration
    public const int schema2 = 10
    Field Value
    Type Description
    Int32

    Properties

    | Improve this Doc View Source

    IsBetweenLabels

    Gets or sets a property that determines whether or not the major tics will be drawn inbetween the labels, rather than right at the labels.

    Declaration
    public bool IsBetweenLabels { get; set; }
    Property Value
    Type Description
    Boolean

    true to place the text between the labels for text axes, false otherwise

    Remarks

    Note that this setting is only applicable if Type = Text.

    See Also
    IsOutside
    IsInside
    IsOpposite
    IsCrossOutside
    IsCrossInside

    Methods

    | Improve this Doc View Source

    Clone()

    Typesafe, deep-copy clone method.

    Declaration
    public MajorTic Clone()
    Returns
    Type Description
    MajorTic

    A new, independent copy of this class

    | Improve this Doc View Source

    GetObjectData(SerializationInfo, StreamingContext)

    Populates a SerializationInfo instance with the data needed to serialize the target object

    Declaration
    [SecurityPermission(SecurityAction.Demand, SerializationFormatter = true)]
    public override void GetObjectData(SerializationInfo info, StreamingContext context)
    Parameters
    Type Name Description
    SerializationInfo info

    A SerializationInfo instance that defines the serialized data

    StreamingContext context

    A StreamingContext instance that contains the serialized data

    Overrides
    MinorTic.GetObjectData(SerializationInfo, StreamingContext)

    Explicit Interface Implementations

    | Improve this Doc View Source

    ICloneable.Clone()

    Implement the ICloneable interface in a typesafe manner by just calling the typed version of Clone()

    Declaration
    object ICloneable.Clone()
    Returns
    Type Description
    Object

    A deep copy of this object

    Implements

    System.ICloneable
    System.Runtime.Serialization.ISerializable
    • Improve this Doc
    • View Source
    In This Article
    Back to top Generated by DocFX