CalendarHitInfo.InfoType Property
OBSOLETE
Use the HitTest property instead.
Gets or sets the type of information the CalendarHitInfo contains.
Namespace: DevExpress.XtraEditors.Calendar
Assembly: DevExpress.XtraEditors.v24.1.dll
NuGet Package: DevExpress.Win.Navigation
Declaration
[Browsable(false)]
[EditorBrowsable(EditorBrowsableState.Never)]
[Obsolete("Use the HitTest property instead.")]
public CalendarHitInfoType InfoType { get; set; }
Property Value
Type | Description |
---|---|
CalendarHitInfoType | A CalendarHitInfoType enumeration member. |
Available values:
Name | Description |
---|---|
Unknown | The type of the visual element is undefined. |
MonthNumber | |
DecMonth | |
IncMonth | |
DecYear | |
IncYear | |
EditMonth | |
EditYear | |
WeekNumber | |
LeftArrow | For internal use. |
RightArrow | For internal use. |
LeftArrow2 | For internal use. |
RightArrow2 | For internal use. |
Cell | For internal use. |
Caption | For internal use. |
CurrentDate | For internal use. |
Clear | For internal use. |
Ok | For internal use. |
Cancel | For internal use. |
Today | |
LeftScrollArea | For internal use. |
RightScrollArea | For internal use. |
Remarks
Use the DateNavigator.GetHitInfo method to obtain the CalendarHitInfo object and check the InfoType property to correctly interpret other properties.
See Also