Spread Windows Forms 17
GrapeCity.Win.PluginInputMan Assembly / GrapeCity.Win.Spread.InputMan.CellType Namespace / GcTimeSpanCellType Class / ValueSign Property


In This Topic
    ValueSign Property (GcTimeSpanCellType)
    In This Topic
    Gets or sets the value sign.
    Syntax
    'Declaration
     
    
    Public Property ValueSign As ValueSignControl
    'Usage
     
    
    Dim instance As GcTimeSpanCellType
    Dim value As ValueSignControl
     
    instance.ValueSign = value
     
    value = instance.ValueSign
    public ValueSignControl ValueSign {get; set;}

    Property Value

    A ValueSignControl value that indicates the value sign.
    The defalut is ValueSignControl.NoControl.
    Exceptions
    ExceptionDescription
    value is not defined in the ValueSignControl.
    Remarks
    The ValueSign property determines what value can be accepted. If the value is ValueSignControl.Positive, only values that are not smaller than System.TimeSpan.Zero are allowed. If the value is ValueSignControl.Negative, only values that are not bigger than System.TimeSpan.Zero are allowed. The ValueSignControl.NoControl setting means all values are allowed.
    See Also