KaxDateInputDisplayDateFormat Property |
Gets or sets the display date format used by
KaxDateInput.(Visible when the control is not on focus.)
Namespace: Kettic.AspNet.ControlsAssembly: Kettic.AspNet.Controls (in Kettic.AspNet.Controls.dll) Version: 2014.4.1129.0 (2014.04.1129.0)
Syntax public virtual string DisplayDateFormat { get; set; }
Public Overridable Property DisplayDateFormat As String
Get
Set
public:
virtual property String^ DisplayDateFormat {
String^ get ();
void set (String^ value);
}
abstract DisplayDateFormat : string with get, set
override DisplayDateFormat : string with get, set
Property Value
Type:
StringA string specifying the display date format used by KaxDateInput. The default
value is "d" (short date format). If the DisplayDateFormat is left
blank, the DateFormat will be used both for editing and
display.
Remarks
You can examine DateTimeFormatInfo class for a list of all
available format characters and patterns.
Examples private void Page_Load(object sender, System.EventArgs e)
{
KaxDateInput1.DisplayDateFormat = "M/d/yyyy";
}
Private Sub Page_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles MyBase.Load
KaxDateInput1.DisplayDateFormat = "M/d/yyyy"
End Sub
No code example is currently available or this language may not be supported.
No code example is currently available or this language may not be supported.
See Also