Given a DateTime value, the enum determines how the time part is evaluated.
Definition
Namespace:Telerik.WinControls.UI
Assembly:Telerik.WinControls.GridView.dll
Syntax:
C#
[Flags]
public enum GridViewTimePrecisionMode : short
Fields
The Hour, Minute, and Second parts are taken into account.
C#
All = Hour | Minute | Second
Only the Hour part is taken into account.
C#
Hour = 1
Only the Minute part are taken into account.
C#
Minute = 2
The time part is not taken into account.
C#
None = 0
Only the Second part are taken into account.
C#
Second = 4