Calendar.DayOfWeekAsSoloString Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Overloads
DayOfWeekAsSoloString() |
Returns a string representation of the day of the week suitable for stand-alone display. |
DayOfWeekAsSoloString(Int32) |
Returns a string representation of the day of the week suitable for stand-alone display. |
DayOfWeekAsSoloString()
Returns a string representation of the day of the week suitable for stand-alone display.
public:
virtual Platform::String ^ DayOfWeekAsSoloString() = DayOfWeekAsSoloString;
/// [Windows.Foundation.Metadata.Overload("DayOfWeekAsFullSoloString")]
winrt::hstring DayOfWeekAsSoloString();
[Windows.Foundation.Metadata.Overload("DayOfWeekAsFullSoloString")]
public string DayOfWeekAsSoloString();
function dayOfWeekAsSoloString()
Public Function DayOfWeekAsSoloString () As String
Returns
A string representation of the day of the week, using the most common abbreviation available.
- Attributes
See also
- DayOfWeekAsSoloString(Int32)
- Calendar, date, and time controls
- Calendar sample
- Date and time formatting sample
Applies to
DayOfWeekAsSoloString(Int32)
Returns a string representation of the day of the week suitable for stand-alone display.
public:
virtual Platform::String ^ DayOfWeekAsSoloString(int idealLength) = DayOfWeekAsSoloString;
/// [Windows.Foundation.Metadata.Overload("DayOfWeekAsSoloString")]
winrt::hstring DayOfWeekAsSoloString(int const& idealLength);
[Windows.Foundation.Metadata.Overload("DayOfWeekAsSoloString")]
public string DayOfWeekAsSoloString(int idealLength);
function dayOfWeekAsSoloString(idealLength)
Public Function DayOfWeekAsSoloString (idealLength As Integer) As String
Parameters
- idealLength
-
Int32
int
A positive integer specifying the ideal length, in characters, for the returned string, or 0 specifying the most common abbreviation available.
Returns
A string representation of the day of the week.
- Attributes
See also
- DayOfWeekAsSoloString()
- Calendar, date, and time controls
- Calendar sample
- Date and time formatting sample