Calendar Calendar Calendar Calendar Class
Definition
Manipulates the representation of a date and time within a given calendar and clock.
public : sealed class Calendar : ICalendar, ITimeZoneOnCalendarpublic sealed class Calendar : ICalendar, ITimeZoneOnCalendarPublic NotInheritable Class Calendar Implements ICalendar, ITimeZoneOnCalendar// You can use this class in JavaScript.
- Attributes
| Device family |
Windows 10 (introduced v10.0.10240.0)
|
| API contract |
Windows.Foundation.UniversalApiContract (introduced v1)
|
Remarks
If your app passes language tags used in this class to any National Language Support functions, it must first convert the tags by calling ResolveLocaleName.
Starting in : Language tags support the Unicode extensions "ca-" and "nu-". (See Unicode Key/Type Definitions.) Note that these extensions can affect the calendar used by Calendar objects.
Constructors
Calendar() Calendar() Calendar() Calendar()
Creates a Calendar object and initializes it to the current date and time.
public : Calendar()public Calendar()Public Sub New()// You can use this method in JavaScript.
- See Also
Calendar(IIterable)
Calendar(IIterable)
Calendar(IIterable)
Calendar(IIterable)
Creates a Calendar object that is initialized with a language list.
public : Calendar(IIterable<PlatForm::String> languages)public Calendar(IEnumerable<String> languages)Public Sub New(languages As IEnumerable<String>)// You can use this method in JavaScript.
- languages
- IIterable<PlatForm::String> IEnumerable<String> IEnumerable<String> IEnumerable<String>
The list of language identifiers, in priority order, that represents the choice of languages. These are used for resolving patterns to strings. See Remarks.
- See Also
Calendar(IIterable, String, String)
Calendar(IIterable, String, String)
Calendar(IIterable, String, String)
Calendar(IIterable, String, String)
Creates a Calendar object that is initialized with a language list, calendar, and clock.
public : Calendar(IIterable<PlatForm::String> languages, PlatForm::String calendar, PlatForm::String clock)public Calendar(IEnumerable<String> languages, String calendar, String clock)Public Sub New(languages As IEnumerable<String>, calendar As String, clock As String)// You can use this method in JavaScript.
- languages
- IIterable<PlatForm::String> IEnumerable<String> IEnumerable<String> IEnumerable<String>
The list of language identifiers, in priority order, representing the choice of languages. These are used for resolving patterns to strings. See Remarks.
- calendar
- PlatForm::String String String String
The calendar identifier to use.
- clock
- PlatForm::String String String String
The clock identifier to use.
- See Also
Calendar(IIterable, String, String, String)
Calendar(IIterable, String, String, String)
Calendar(IIterable, String, String, String)
Calendar(IIterable, String, String, String)
Creates a Calendar object that is initialized with a language list, calendar, clock, and time zone.
public : Calendar(IIterable<PlatForm::String> languages, PlatForm::String calendar, PlatForm::String clock, PlatForm::String timeZoneId)public Calendar(IEnumerable<String> languages, String calendar, String clock, String timeZoneId)Public Sub New(languages As IEnumerable<String>, calendar As String, clock As String, timeZoneId As String)// You can use this method in JavaScript.
- languages
- IIterable<PlatForm::String> IEnumerable<String> IEnumerable<String> IEnumerable<String>
The list of language identifiers, in priority order, representing the choice of languages. These are used for resolving patterns to strings. See Remarks.
- calendar
- PlatForm::String String String String
The calendar identifier to use.
- clock
- PlatForm::String String String String
The clock identifier to use.
- timeZoneId
- PlatForm::String String String String
An identifier from the IANA Time Zone Database which identifies the time zone that should be used (for example, "America/Los_Angeles" for Pacific Time).
Properties
Day Day Day Day
Gets or sets the day.
public : int Day { get; set; }public int Day { get; set; }Public ReadWrite Property Day As int// You can use this property in JavaScript.
- Value
- int int int int
The day.
Era Era Era Era
Gets or sets the era.
public : int Era { get; set; }public int Era { get; set; }Public ReadWrite Property Era As int// You can use this property in JavaScript.
- Value
- int int int int
The integer that represents the era.
Hour Hour Hour Hour
Gets or sets the hour.
public : int Hour { get; set; }public int Hour { get; set; }Public ReadWrite Property Hour As int// You can use this property in JavaScript.
- Value
- int int int int
The hour.
IsDaylightSavingTime IsDaylightSavingTime IsDaylightSavingTime IsDaylightSavingTime
Gets a Boolean indicating if Daylight Saving Time is in effect for the date of this Calendar object.
public : PlatForm::Boolean IsDaylightSavingTime { get; }public bool IsDaylightSavingTime { get; }Public ReadOnly Property IsDaylightSavingTime As bool// You can use this property in JavaScript.
- Value
- PlatForm::Boolean bool bool bool
True if Daylight Saving Time is in effect for the date; otherwise, False.
Languages Languages Languages Languages
Gets the priority list of language identifiers that is used when formatting components as strings.
public : IVectorView<string> Languages { get; }public IReadOnlyList<string> Languages { get; }Public ReadOnly Property Languages As IReadOnlyList<string>// You can use this property in JavaScript.
- Value
- IVectorView<PlatForm::String> IReadOnlyList<string> IReadOnlyList<string> IReadOnlyList<string>
The list of language identifiers.
Starting in : Language tags can support Unicode extensions. See the Remarks for the Calendar(IIterable(String)) constructor.
Minute Minute Minute Minute
Gets or sets the minute.
public : int Minute { get; set; }public int Minute { get; set; }Public ReadWrite Property Minute As int// You can use this property in JavaScript.
- Value
- int int int int
The minute.
Month Month Month Month
Gets or sets the month.
public : int Month { get; set; }public int Month { get; set; }Public ReadWrite Property Month As int// You can use this property in JavaScript.
- Value
- int int int int
The month.
Nanosecond Nanosecond Nanosecond Nanosecond
Gets or sets the nanosecond.
public : int Nanosecond { get; set; }public int Nanosecond { get; set; }Public ReadWrite Property Nanosecond As int// You can use this property in JavaScript.
- Value
- int int int int
The nanosecond.
NumberOfDaysInThisMonth NumberOfDaysInThisMonth NumberOfDaysInThisMonth NumberOfDaysInThisMonth
Gets the number of days in the current month of this Calendar object.
public : int NumberOfDaysInThisMonth { get; }public int NumberOfDaysInThisMonth { get; }Public ReadOnly Property NumberOfDaysInThisMonth As int// You can use this property in JavaScript.
- Value
- int int int int
The number of days in the current month, or – 1 if the number of days in the current month is unknown.
NumberOfEras NumberOfEras NumberOfEras NumberOfEras
Gets the number of eras in this Calendar object.
public : int NumberOfEras { get; }public int NumberOfEras { get; }Public ReadOnly Property NumberOfEras As int// You can use this property in JavaScript.
NumberOfHoursInThisPeriod NumberOfHoursInThisPeriod NumberOfHoursInThisPeriod NumberOfHoursInThisPeriod
Gets the number of hours in the current day period of this Calendar object.
public : int NumberOfHoursInThisPeriod { get; }public int NumberOfHoursInThisPeriod { get; }Public ReadOnly Property NumberOfHoursInThisPeriod As int// You can use this property in JavaScript.
- Value
- int int int int
The number of hours in the current day period, or – 1 if the number of hours in the current day period is unknown.
NumberOfMinutesInThisHour NumberOfMinutesInThisHour NumberOfMinutesInThisHour NumberOfMinutesInThisHour
NumberOfMonthsInThisYear NumberOfMonthsInThisYear NumberOfMonthsInThisYear NumberOfMonthsInThisYear
Gets the number of months in the current year of this Calendar object.
public : int NumberOfMonthsInThisYear { get; }public int NumberOfMonthsInThisYear { get; }Public ReadOnly Property NumberOfMonthsInThisYear As int// You can use this property in JavaScript.
- Value
- int int int int
The number of months in the current year, or – 1 if the number of months in the current year is unknown.
NumberOfPeriodsInThisDay NumberOfPeriodsInThisDay NumberOfPeriodsInThisDay NumberOfPeriodsInThisDay
Gets the number of periods in the current day of this Calendar object.
public : int NumberOfPeriodsInThisDay { get; }public int NumberOfPeriodsInThisDay { get; }Public ReadOnly Property NumberOfPeriodsInThisDay As int// You can use this property in JavaScript.
- Value
- int int int int
The number of periods in the current day, or – 1 if the number of periods in the current day is unknown.
NumberOfSecondsInThisMinute NumberOfSecondsInThisMinute NumberOfSecondsInThisMinute NumberOfSecondsInThisMinute
NumberOfYearsInThisEra NumberOfYearsInThisEra NumberOfYearsInThisEra NumberOfYearsInThisEra
Gets the number of years in the current era of this Calendar object.
public : int NumberOfYearsInThisEra { get; }public int NumberOfYearsInThisEra { get; }Public ReadOnly Property NumberOfYearsInThisEra As int// You can use this property in JavaScript.
- Value
- int int int int
The number of years in the current era, or – 1 if there is no known bound to the number of years in the current era.
NumeralSystem NumeralSystem NumeralSystem NumeralSystem
Gets or sets the numbering system that is used when formatting components as strings.
public : PlatForm::String NumeralSystem { get; set; }public string NumeralSystem { get; set; }Public ReadWrite Property NumeralSystem As string// You can use this property in JavaScript.
- Value
- PlatForm::String string string string
A string that indicates the numeral system of the calendar, such as "Latn" for the Latin numeral system (0123456789) or "Arab" for the Arabic-Indic numeral system (٠١٢٣٤٥٦٧٨٩). See the supported NumeralSystem values.
- See Also
Period Period Period Period
Gets or sets the period of the current day.
public : int Period { get; set; }public int Period { get; set; }Public ReadWrite Property Period As int// You can use this property in JavaScript.
- Value
- int int int int
A numeric representation of the current day period. With a 12-hour clock, for example, the first period of the day is 1, representing AM, and the second period is 2, representing PM.
ResolvedLanguage ResolvedLanguage ResolvedLanguage ResolvedLanguage
Gets the language that was most recently used to perform calendar formatting or operations.
public : PlatForm::String ResolvedLanguage { get; }public string ResolvedLanguage { get; }Public ReadOnly Property ResolvedLanguage As string// You can use this property in JavaScript.
- Value
- PlatForm::String string string string
The language from the priority list of language identifiers that was most recently used to perform calendar formatting or operations.
Starting in : Language tags can support Unicode extensions. See the Remarks for the Calendar(IIterable(String)) constructor.
Second Second Second Second
Gets or sets the second.
public : int Second { get; set; }public int Second { get; set; }Public ReadWrite Property Second As int// You can use this property in JavaScript.
- Value
- int int int int
The second.
Methods
AddDays(Int32) AddDays(Int32) AddDays(Int32) AddDays(Int32)
Increments or decrements the day.
public : void AddDays(int days)public void AddDays(Int32 days)Public Function AddDays(days As Int32) As void// You can use this method in JavaScript.
- days
- int Int32 Int32 Int32
The number of days by which to increment the day (if the value is positive) or decrement the day (if the value is negative).
AddEras(Int32) AddEras(Int32) AddEras(Int32) AddEras(Int32)
Increments or decrements the era.
public : void AddEras(int eras)public void AddEras(Int32 eras)Public Function AddEras(eras As Int32) As void// You can use this method in JavaScript.
- eras
- int Int32 Int32 Int32
The number of eras by which to increment the era (if the value is positive) or decrement the era (if the value is negative).
AddHours(Int32) AddHours(Int32) AddHours(Int32) AddHours(Int32)
Increments or decrements the hour.
public : void AddHours(int hours)public void AddHours(Int32 hours)Public Function AddHours(hours As Int32) As void// You can use this method in JavaScript.
- hours
- int Int32 Int32 Int32
The number of hours by which to increment the hour (if the value is positive) or decrement the hour (if the value is negative).
AddMinutes(Int32) AddMinutes(Int32) AddMinutes(Int32) AddMinutes(Int32)
Increments or decrements the minute.
public : void AddMinutes(int minutes)public void AddMinutes(Int32 minutes)Public Function AddMinutes(minutes As Int32) As void// You can use this method in JavaScript.
- minutes
- int Int32 Int32 Int32
The number of minutes by which to increment the minute (if the value is positive) or decrement the minute (if the value is negative).
AddMonths(Int32) AddMonths(Int32) AddMonths(Int32) AddMonths(Int32)
Increments or decrements the month.
public : void AddMonths(int months)public void AddMonths(Int32 months)Public Function AddMonths(months As Int32) As void// You can use this method in JavaScript.
- months
- int Int32 Int32 Int32
The number of months by which to increment the month (if the value is positive) or decrement the month (if the value is negative).
AddNanoseconds(Int32) AddNanoseconds(Int32) AddNanoseconds(Int32) AddNanoseconds(Int32)
Increments or decrements the nanosecond.
public : void AddNanoseconds(int nanoseconds)public void AddNanoseconds(Int32 nanoseconds)Public Function AddNanoseconds(nanoseconds As Int32) As void// You can use this method in JavaScript.
- nanoseconds
- int Int32 Int32 Int32
The number of nanoseconds by which to increment the nanosecond (if the value is positive) or decrement the nanosecond (if the value is negative).
AddPeriods(Int32) AddPeriods(Int32) AddPeriods(Int32) AddPeriods(Int32)
Increments or decrements the period.
public : void AddPeriods(int periods)public void AddPeriods(Int32 periods)Public Function AddPeriods(periods As Int32) As void// You can use this method in JavaScript.
- periods
- int Int32 Int32 Int32
The number of periods by which to increment the period (if the value is positive) or decrement the period (if the value is negative).
AddSeconds(Int32) AddSeconds(Int32) AddSeconds(Int32) AddSeconds(Int32)
Increments or decrements the second.
public : void AddSeconds(int seconds)public void AddSeconds(Int32 seconds)Public Function AddSeconds(seconds As Int32) As void// You can use this method in JavaScript.
- seconds
- int Int32 Int32 Int32
The number of seconds by which to increment the second (if the value is positive) or decrement the second (if the value is negative).
AddWeeks(Int32) AddWeeks(Int32) AddWeeks(Int32) AddWeeks(Int32)
Increments or decrements the day by the specified number of weeks.
public : void AddWeeks(int weeks)public void AddWeeks(Int32 weeks)Public Function AddWeeks(weeks As Int32) As void// You can use this method in JavaScript.
- weeks
- int Int32 Int32 Int32
The number of weeks by which to increment the day (if the value is positive) or decrement the day (if the value is negative).
AddYears(Int32) AddYears(Int32) AddYears(Int32) AddYears(Int32)
Increments or decrements the year.
public : void AddYears(int years)public void AddYears(Int32 years)Public Function AddYears(years As Int32) As void// You can use this method in JavaScript.
- years
- int Int32 Int32 Int32
The number of years by which to increment the year (if the value is positive) or decrement the year (if the value is negative).
ChangeCalendarSystem(String) ChangeCalendarSystem(String) ChangeCalendarSystem(String) ChangeCalendarSystem(String)
Sets a new calendar system to be used by this Calendar object.
public : void ChangeCalendarSystem(PlatForm::String value)public void ChangeCalendarSystem(String value)Public Function ChangeCalendarSystem(value As String) As void// You can use this method in JavaScript.
- value
- PlatForm::String String String String
The calendar identifier to use.
ChangeClock(String) ChangeClock(String) ChangeClock(String) ChangeClock(String)
Sets a new clock to be used by this Calendar object.
public : void ChangeClock(PlatForm::String value)public void ChangeClock(String value)Public Function ChangeClock(value As String) As void// You can use this method in JavaScript.
- value
- PlatForm::String String String String
The clock identifier to use.
ChangeTimeZone(String) ChangeTimeZone(String) ChangeTimeZone(String) ChangeTimeZone(String)
Sets a new time zone to be used by this Calendar object.
public : void ChangeTimeZone(PlatForm::String timeZoneId)public void ChangeTimeZone(String timeZoneId)Public Function ChangeTimeZone(timeZoneId As String) As void// You can use this method in JavaScript.
- timeZoneId
- PlatForm::String String String String
An identifier from the IANA Time Zone Database which identifies the time zone that should be used (for example, "America/Los_Angeles" for Pacific Time).
Remarks
The values of other properties of this Calendar object may change as a result.
Compare(Calendar) Compare(Calendar) Compare(Calendar) Compare(Calendar)
Compares this calendar to another Calendar object and indicates whether the date and time of one is earlier, equal to, or later than that of the other.
public : int Compare(Calendar other)public int Compare(Calendar other)Public Function Compare(other As Calendar) As int// You can use this method in JavaScript.
One of the following values:
| Return value | Description |
|---|---|
| Less than zero | The date and time of this calendar is earlier than that of other. |
| Zero | The date and times are equal. |
| Greater than zero | The date and time of this calendar is later than that of other. |
CompareDateTime(DateTime) CompareDateTime(DateTime) CompareDateTime(DateTime) CompareDateTime(DateTime)
Compares this calendar to a DateTime object and indicates whether the date and time of one is earlier, equal to, or later than that of the other.
public : int CompareDateTime(DateTime other)public int CompareDateTime(DateTimeOffset other)Public Function CompareDateTime(other As DateTimeOffset) As int// You can use this method in JavaScript.
- other
- DateTime DateTimeOffset DateTimeOffset DateTimeOffset
The DateTime object to compare to the current calendar.
One of the following values:
| Return value | Description |
|---|---|
| Less than zero | The date and time of this calendar is earlier than that of other. |
| Zero | The date and times are equal. |
| Greater than zero | The date and time of this calendar is later than that of other. |
CopyTo(Calendar) CopyTo(Calendar) CopyTo(Calendar) CopyTo(Calendar)
DayAsPaddedString(Int32) DayAsPaddedString(Int32) DayAsPaddedString(Int32) DayAsPaddedString(Int32)
Returns a string representation of the day, optionally zero-padded.
public : PlatForm::String DayAsPaddedString(int minDigits)public string DayAsPaddedString(Int32 minDigits)Public Function DayAsPaddedString(minDigits As Int32) As string// You can use this method in JavaScript.
- minDigits
- int Int32 Int32 Int32
The minimum number of integer digits to be displayed. If the day does not have enough integer digits, it will be padded with zeros to the correct amount. For example, for the day 3, a parameter of 1 returns 3, and a parameter of 2 returns 03.
A string representation of the day.
DayAsString() DayAsString() DayAsString() DayAsString()
Returns a string that contains the numeric representation of the day.
public : PlatForm::String DayAsString()public string DayAsString()Public Function DayAsString() As string// You can use this method in JavaScript.
A string representation of the day.
DayOfWeekAsSoloString() DayOfWeekAsSoloString() DayOfWeekAsSoloString() DayOfWeekAsSoloString()
Returns a string representation of the day of the week suitable for stand-alone display.
public : PlatForm::String DayOfWeekAsSoloString()public string DayOfWeekAsSoloString()Public Function DayOfWeekAsSoloString() As string// You can use this method in JavaScript.
A string representation of the day of the week, using the most common abbreviation available.
- See Also
DayOfWeekAsSoloString(Int32) DayOfWeekAsSoloString(Int32) DayOfWeekAsSoloString(Int32) DayOfWeekAsSoloString(Int32)
Returns a string representation of the day of the week suitable for stand-alone display.
public : PlatForm::String DayOfWeekAsSoloString(int idealLength)public string DayOfWeekAsSoloString(Int32 idealLength)Public Function DayOfWeekAsSoloString(idealLength As Int32) As string// You can use this method in JavaScript.
- idealLength
- int Int32 Int32 Int32
A positive integer specifying the ideal length, in characters, for the returned string, or 0 specifying the most common abbreviation available.
A string representation of the day of the week.
- See Also
DayOfWeekAsString() DayOfWeekAsString() DayOfWeekAsString() DayOfWeekAsString()
Returns a string representation of the day of the week suitable for inclusion with other date components.
public : PlatForm::String DayOfWeekAsString()public string DayOfWeekAsString()Public Function DayOfWeekAsString() As string// You can use this method in JavaScript.
A string representation of the day of the week, using the most common abbreviation available.
- See Also
DayOfWeekAsString(Int32) DayOfWeekAsString(Int32) DayOfWeekAsString(Int32) DayOfWeekAsString(Int32)
Returns a string representation of the day of the week suitable for inclusion with other date components.
public : PlatForm::String DayOfWeekAsString(int idealLength)public string DayOfWeekAsString(Int32 idealLength)Public Function DayOfWeekAsString(idealLength As Int32) As string// You can use this method in JavaScript.
- idealLength
- int Int32 Int32 Int32
A positive integer specifying the ideal length, in characters, for the returned string, or 0 specifying the most common abbreviation available.
A string representation of the day of the week.
- See Also
EraAsString() EraAsString() EraAsString() EraAsString()
Returns a string representation of the era.
public : PlatForm::String EraAsString()public string EraAsString()Public Function EraAsString() As string// You can use this method in JavaScript.
A string representation of the era, using the most common abbreviation available.
- See Also
EraAsString(Int32) EraAsString(Int32) EraAsString(Int32) EraAsString(Int32)
Returns a string representation of the era. The string chosen is closest in length to the ideal length.
public : PlatForm::String EraAsString(int idealLength)public string EraAsString(Int32 idealLength)Public Function EraAsString(idealLength As Int32) As string// You can use this method in JavaScript.
- idealLength
- int Int32 Int32 Int32
A positive integer specifying the ideal length, in characters, for the returned string, or 0 specifying the most common abbreviation available.
A string representation of the era.
- See Also
GetCalendarSystem() GetCalendarSystem() GetCalendarSystem() GetCalendarSystem()
Gets the calendar system that is used by this Calendar object.
public : PlatForm::String GetCalendarSystem()public string GetCalendarSystem()Public Function GetCalendarSystem() As string// You can use this method in JavaScript.
The identifier of the calendar system.
GetClock() GetClock() GetClock() GetClock()
Gets the clock that is used by this Calendar object.
public : PlatForm::String GetClock()public string GetClock()Public Function GetClock() As string// You can use this method in JavaScript.
The identifier of the clock.
GetDateTime() GetDateTime() GetDateTime() GetDateTime()
Builds a date and time, given the components of this Calendar object.
public : DateTime GetDateTime()public DateTimeOffset GetDateTime()Public Function GetDateTime() As DateTimeOffset// You can use this method in JavaScript.
GetTimeZone() GetTimeZone() GetTimeZone() GetTimeZone()
Gets the identifier that identifies the time zone that is used by this Calendar object.
public : PlatForm::String GetTimeZone()public string GetTimeZone()Public Function GetTimeZone() As string// You can use this method in JavaScript.
The identifier from the IANA Time Zone Database that identifies the time zone that is used by this Calendar object. (An example is "America/Los_Angeles" for Pacific Time.)
HourAsPaddedString(Int32) HourAsPaddedString(Int32) HourAsPaddedString(Int32) HourAsPaddedString(Int32)
Returns a string representation of the hour, optionally zero-padded.
public : PlatForm::String HourAsPaddedString(int minDigits)public string HourAsPaddedString(Int32 minDigits)Public Function HourAsPaddedString(minDigits As Int32) As string// You can use this method in JavaScript.
- minDigits
- int Int32 Int32 Int32
The minimum number of integer digits to be displayed. If the hour does not have enough integer digits, it will be padded with zeros to the correct amount. For example, for the hour 3, a parameter of 1 returns 3, and a parameter of 2 returns 03.
A string representation of the hour.
HourAsString() HourAsString() HourAsString() HourAsString()
Returns a string that contains the numeric representation of the hour.
public : PlatForm::String HourAsString()public string HourAsString()Public Function HourAsString() As string// You can use this method in JavaScript.
A string representation of the hour.
MinuteAsPaddedString(Int32) MinuteAsPaddedString(Int32) MinuteAsPaddedString(Int32) MinuteAsPaddedString(Int32)
Returns a string representation of the minute, optionally zero-padded.
public : PlatForm::String MinuteAsPaddedString(int minDigits)public string MinuteAsPaddedString(Int32 minDigits)Public Function MinuteAsPaddedString(minDigits As Int32) As string// You can use this method in JavaScript.
- minDigits
- int Int32 Int32 Int32
The minimum number of integer digits to be displayed. If the minute does not have enough integer digits, it will be padded with zeros to the correct amount. For example, for the minute 3, a parameter of 1 returns 3, and a parameter of 2 returns 03.
A string representation of the minute.
MinuteAsString() MinuteAsString() MinuteAsString() MinuteAsString()
Returns a string that contains the numeric representation of the minute.
public : PlatForm::String MinuteAsString()public string MinuteAsString()Public Function MinuteAsString() As string// You can use this method in JavaScript.
A string representation of the minute.
MonthAsNumericString() MonthAsNumericString() MonthAsNumericString() MonthAsNumericString()
Returns a string that contains the numeric representation of the month.
public : PlatForm::String MonthAsNumericString()public string MonthAsNumericString()Public Function MonthAsNumericString() As string// You can use this method in JavaScript.
A string representation of the month.
MonthAsPaddedNumericString(Int32) MonthAsPaddedNumericString(Int32) MonthAsPaddedNumericString(Int32) MonthAsPaddedNumericString(Int32)
Returns a string representation of the month, optionally zero-padded.
public : PlatForm::String MonthAsPaddedNumericString(int minDigits)public string MonthAsPaddedNumericString(Int32 minDigits)Public Function MonthAsPaddedNumericString(minDigits As Int32) As string// You can use this method in JavaScript.
- minDigits
- int Int32 Int32 Int32
The minimum number of integer digits to be displayed. If the month does not have enough integer digits, it will be padded with zeros to the correct amount. For example, for the month 3, a parameter of 1 returns 3, and a parameter of 2 returns 03.
A string representation of the month.
MonthAsSoloString() MonthAsSoloString() MonthAsSoloString() MonthAsSoloString()
Returns a string representation of the month suitable for stand-alone display.
public : PlatForm::String MonthAsSoloString()public string MonthAsSoloString()Public Function MonthAsSoloString() As string// You can use this method in JavaScript.
A string representation of the month, using the most common abbreviation available.
- See Also
MonthAsSoloString(Int32) MonthAsSoloString(Int32) MonthAsSoloString(Int32) MonthAsSoloString(Int32)
Returns a string representation of the month suitable for stand-alone display.
public : PlatForm::String MonthAsSoloString(int idealLength)public string MonthAsSoloString(Int32 idealLength)Public Function MonthAsSoloString(idealLength As Int32) As string// You can use this method in JavaScript.
- idealLength
- int Int32 Int32 Int32
A positive integer specifying the ideal length, in characters, for the returned string, or 0 specifying the most common abbreviation available.
A string representation of the month.
- See Also
MonthAsString() MonthAsString() MonthAsString() MonthAsString()
Returns a string representation of the month suitable for inclusion with other date components.
public : PlatForm::String MonthAsString()public string MonthAsString()Public Function MonthAsString() As string// You can use this method in JavaScript.
A string representation of the month, using the most common abbreviation available.
- See Also
MonthAsString(Int32) MonthAsString(Int32) MonthAsString(Int32) MonthAsString(Int32)
Returns a string representation of the month suitable for inclusion with other date components.
public : PlatForm::String MonthAsString(int idealLength)public string MonthAsString(Int32 idealLength)Public Function MonthAsString(idealLength As Int32) As string// You can use this method in JavaScript.
- idealLength
- int Int32 Int32 Int32
A positive integer specifying the ideal length, in characters, for the returned string, or 0 specifying the most common abbreviation available.
A string representation of the month.
- See Also
NanosecondAsPaddedString(Int32) NanosecondAsPaddedString(Int32) NanosecondAsPaddedString(Int32) NanosecondAsPaddedString(Int32)
Returns a string representation of the nanosecond, optionally zero-padded.
public : PlatForm::String NanosecondAsPaddedString(int minDigits)public string NanosecondAsPaddedString(Int32 minDigits)Public Function NanosecondAsPaddedString(minDigits As Int32) As string// You can use this method in JavaScript.
- minDigits
- int Int32 Int32 Int32
The minimum number of integer digits to be displayed. If the nanosecond does not have enough integer digits, it will be padded with zeros to the correct amount. For example, for the nanosecond 42, a parameter of 1 or 2 returns 42, and a parameter of 3 returns 042.
A string representation of the nanosecond.
NanosecondAsString() NanosecondAsString() NanosecondAsString() NanosecondAsString()
Returns a string that contains the numeric representation of the nanosecond.
public : PlatForm::String NanosecondAsString()public string NanosecondAsString()Public Function NanosecondAsString() As string// You can use this method in JavaScript.
A string representation of the nanosecond.
PeriodAsString() PeriodAsString() PeriodAsString() PeriodAsString()
Returns a string representation of the day period, such as AM or PM, that uses the most common abbreviation available.
public : PlatForm::String PeriodAsString()public string PeriodAsString()Public Function PeriodAsString() As string// You can use this method in JavaScript.
A string representation of the day period.
- See Also
PeriodAsString(Int32) PeriodAsString(Int32) PeriodAsString(Int32) PeriodAsString(Int32)
Returns a string representation of the day period, such as AM or PM.
public : PlatForm::String PeriodAsString(int idealLength)public string PeriodAsString(Int32 idealLength)Public Function PeriodAsString(idealLength As Int32) As string// You can use this method in JavaScript.
- idealLength
- int Int32 Int32 Int32
A positive integer that specifies the ideal length, in characters, for the returned string; or a zero that specifies the most common abbreviation available.
A string representation for the day period.
- See Also
SecondAsPaddedString(Int32) SecondAsPaddedString(Int32) SecondAsPaddedString(Int32) SecondAsPaddedString(Int32)
Returns a string representation of the second, optionally zero-padded.
public : PlatForm::String SecondAsPaddedString(int minDigits)public string SecondAsPaddedString(Int32 minDigits)Public Function SecondAsPaddedString(minDigits As Int32) As string// You can use this method in JavaScript.
- minDigits
- int Int32 Int32 Int32
The minimum number of integer digits to be displayed. If the second does not have enough integer digits, it will be padded with zeros to the correct amount. For example, for the second 3, a parameter of 1 returns 3, and a parameter of 2 returns 03.
A string representation of the second.
SecondAsString() SecondAsString() SecondAsString() SecondAsString()
Returns a string that contains the numeric representation of the second.
public : PlatForm::String SecondAsString()public string SecondAsString()Public Function SecondAsString() As string// You can use this method in JavaScript.
A string representation of the second.
SetDateTime(DateTime) SetDateTime(DateTime) SetDateTime(DateTime) SetDateTime(DateTime)
Sets all the date and time fields to the date and time represented by the DateTime parameter.
public : void SetDateTime(DateTime value)public void SetDateTime(DateTimeOffset value)Public Function SetDateTime(value As DateTimeOffset) As void// You can use this method in JavaScript.
SetToMax() SetToMax() SetToMax() SetToMax()
Sets the components of this Calendar object to the latest date and time that are supported.
public : void SetToMax()public void SetToMax()Public Function SetToMax() As void// You can use this method in JavaScript.
SetToMin() SetToMin() SetToMin() SetToMin()
Sets the components of this Calendar object to the earliest date and time that are supported.
public : void SetToMin()public void SetToMin()Public Function SetToMin() As void// You can use this method in JavaScript.
SetToNow() SetToNow() SetToNow() SetToNow()
Sets the components of this Calendar object to the current date and time.
public : void SetToNow()public void SetToNow()Public Function SetToNow() As void// You can use this method in JavaScript.
TimeZoneAsString() TimeZoneAsString() TimeZoneAsString() TimeZoneAsString()
Returns the full time zone name applicable at the instant of time that this Calendar object represents.
public : PlatForm::String TimeZoneAsString()public string TimeZoneAsString()Public Function TimeZoneAsString() As string// You can use this method in JavaScript.
The full time zone name. This usually differs depending on whether the time zone is observing Daylight Saving Time or not. It also may differ due to historical changes. (An example is "America/Los_Angeles" for Pacific Time.)
- See Also
TimeZoneAsString(Int32) TimeZoneAsString(Int32) TimeZoneAsString(Int32) TimeZoneAsString(Int32)
Returns the abbreviated time zone name applicable at the instant of time that this Calendar object represents.
public : PlatForm::String TimeZoneAsString(int idealLength)public string TimeZoneAsString(Int32 idealLength)Public Function TimeZoneAsString(idealLength As Int32) As string// You can use this method in JavaScript.
- idealLength
- int Int32 Int32 Int32
The desired length of the abbreviation to be returned. Use 0 to request the abbreviation in most common use.
The time zone abbreviation that is closest in length to idealLength. If there is a tie, the shorter abbreviation is returned. If idealLength is 0, the abbreviation in most common use is returned. (An example is "America/Los_Angeles" for Pacific Time.)
- See Also
YearAsPaddedString(Int32) YearAsPaddedString(Int32) YearAsPaddedString(Int32) YearAsPaddedString(Int32)
Returns a string representation of the year, optionally zero-padded.
public : PlatForm::String YearAsPaddedString(int minDigits)public string YearAsPaddedString(Int32 minDigits)Public Function YearAsPaddedString(minDigits As Int32) As string// You can use this method in JavaScript.
- minDigits
- int Int32 Int32 Int32
The minimum number of integer digits to be displayed. If the year does not have enough integer digits, it will be padded with zeros to the correct amount. For example, for the year 42, a parameter of 1 or 2 returns 42, and a parameter of 3 returns 042.
A string representation of the year.
YearAsString() YearAsString() YearAsString() YearAsString()
Returns a string representation of the year without any initial zero padding.
public : PlatForm::String YearAsString()public string YearAsString()Public Function YearAsString() As string// You can use this method in JavaScript.
A string representation of the year.
YearAsTruncatedString(Int32) YearAsTruncatedString(Int32) YearAsTruncatedString(Int32) YearAsTruncatedString(Int32)
Returns a string representation of the year, optionally truncated.
public : PlatForm::String YearAsTruncatedString(int remainingDigits)public string YearAsTruncatedString(Int32 remainingDigits)Public Function YearAsTruncatedString(remainingDigits As Int32) As string// You can use this method in JavaScript.
- remainingDigits
- int Int32 Int32 Int32
A positive integer that represents the number of least significant digits that should be included. For example, for the year 1234, a parameter of 2 returns 34, and a parameter of 4 or larger returns 1234.
A string representation of the year.