ASP.NET Core MVC Controls | ComponentOne
C1.Web.Mvc Namespace / Calendar Class / FormatDays Property






In This Topic
    FormatDays Property (Calendar)
    In This Topic
    Gets or sets the format used to display the days in month view.
    Syntax
    'Declaration
     
    
    <System.ComponentModel.DefaultValueAttribute("d ")>
    Public Property FormatDays As System.String
    'Usage
     
    
    Dim instance As Calendar
    Dim value As System.String
     
    instance.FormatDays = value
     
    value = instance.FormatDays
    [System.ComponentModel.DefaultValue("d ")]
    public System.string FormatDays {get; set;}
    public read-write property FormatDays: System.String; 
    System.ComponentModel.DefaultValueAttribute("d ")
    public function get,set FormatDays : System.String
    [System.ComponentModel.DefaultValue("d ")]
    public: __property System.string* get_FormatDays();
    public: __property void set_FormatDays( 
       System.string* value
    );
    [System.ComponentModel.DefaultValue("d ")]
    public:
    property System.String^ FormatDays {
       System.String^ get();
       void set (    System.String^ value);
    }
    Remarks
    The default value for this property is 'd ' (the space after the 'd' prevents the format from being interpreted as 'd', the standard format used to represent the short date pattern).
    See Also