Class PageDate

PageDate class

Represents a date format composed of day, month, and year components.

public sealed class PageDate

Constructors

NameDescription
PageDate()The default constructor.

Properties

NameDescription
Day { get; set; }Gets or sets the day component of the date. The format of the date will be updated based on this component.
Delimiter { get; set; }Gets or sets the delimiter used in the date format. The format of the date will be updated based on this delimiter.
Month { get; set; }Gets or sets the month component of the date. The format of the date will be updated based on this component.
Year { get; set; }Gets or sets the year component of the date. The format of the date will be updated based on this component.

Methods

NameDescription
GetFormattedDate()Returns the formatted date string based on the current date format.

Other Members

NameDescription
class DayComponentRepresents the day component of a date.
class MonthComponentRepresents the month component of a date.
class YearComponentRepresents the year component of a date.

See Also