Spread ASP.NET 15
FarPoint.Web.Spread.Extender Assembly / FarPoint.Web.Spread.Extender Namespace / DateCalendarCellType Class / DateFormat Property
Example


In This Topic
    DateFormat Property
    In This Topic
    Gets or sets the date format for the date calendar.
    Syntax
    'Declaration
     
    Public Property DateFormat As String
    'Usage
     
    Dim instance As DateCalendarCellType
    Dim value As String
     
    instance.DateFormat = value
     
    value = instance.DateFormat
    public string DateFormat {get; set;}

    Property Value

    String containing the date format string
    Example
    This example creates a cell with a calendar editor.
    FarPoint.Web.Spread.Extender.DateCalendarCellType dc = new FarPoint.Web.Spread.Extender.DateCalendarCellType();
    dc.Animated = true;
    dc.DateFormat = "MM/dd/yyyy";
    dc.EnableOnClient = true;
    AjaxControlToolkit.MaskedEditExtender mee = new AjaxControlToolkit.MaskedEditExtender();
    mee.Mask = "99/99/9999";
    mee.MaskType = AjaxControlToolkit.MaskedEditType.Date;
    dc.Extenders.Add(mee);
    dc.ShowEditor = true;
    FpSpread1.ActiveSheetView.Cells[0, 0].CellType = dc;
    
    Dim dc As New FarPoint.Web.Spread.Extender.DateCalendarCellType
    dc.Animated = True
    dc.DateFormat = "MM/dd/yyyy"
    dc.EnableOnClient = True
    Dim mee As New AjaxControlToolkit.MaskedEditExtender
    mee.Mask = "99/99/9999"
    mee.MaskType = AjaxControlToolkit.MaskedEditType.Date
    dc.Extenders.Add(mee)
    dc.ShowEditor = True
    FpSpread1.ActiveSheetView.Cells(0, 0).CellType = dc
    See Also