Spread WPF 18
GrapeCity.Wpf.SpreadSheet.CellType.Editors Namespace / GcDateTime Class / Value Property


In This Topic
    Value Property (GcDateTime)
    In This Topic
    Gets or sets the value assigned to the GrapeCity.Windows.InputMan.GcDateTime control.
    Syntax
    'Declaration
     
    <BindableAttribute(True)>
    <RefreshPropertiesAttribute(RefreshProperties.All)>
    <TypeConverterAttribute(System.ComponentModel.DateTimeConverter)>
    Public Property Value As Nullable(Of Date)
    'Usage
     
    Dim instance As GcDateTime
    Dim value As Nullable(Of Date)
     
    instance.Value = value
     
    value = instance.Value
    [Bindable(true)]
    [RefreshProperties(RefreshProperties.All)]
    [TypeConverter(System.ComponentModel.DateTimeConverter)]
    public Nullable<DateTime> Value {get; set;}

    Property Value

    A nullable datetime value assign to the control. The default is the System.DateTime.Now.
    See Also