Hide

YetaWF Documentation

Display
Print

Time Component

Time (Display)

Displays the model formatted as a time localized using the user's selected time zone (see User Settings Module).

Model Type: System.DateTime?

All date/time values in YetaWF are internally stored and processed using UTC.

The model value must be specified as UTC. If the model value is null or equal to DateTime.MinValue or DateTime.MaxValue, nothing is rendered.

[Category("Rss"), Caption("Feed Publish Time"), Description("The time this feed was published")]
[UIHint("Time"), ReadOnly]
public DateTime? FeedPublishTime { get; set; }

Time (Edit)

Allows entry of a time using local time.

Model Type: System.DateTime?

All date/time values in YetaWF are internally stored and processed using UTC.

[Category("Rss"), Caption("Feed Publish Time"), Description("The time this feed was published")]
[UIHint("Time")]
public DateTime? FeedPublishTime { get; set; }