RAD Studio VCL Reference
ContentsIndex
PreviousUpNext
TMonthCalendar.MsgSetRange Method (Integer, PSystemTime, Integer)

Selects a range of dates.

Pascal
function MsgSetRange(Flags: Integer; SysTime: TSystemTimeRangeArray): Boolean; override;
function MsgSetRange(Flags: Integer; SysTime: PSystemTime; Unused: Integer = 0): Boolean; override; deprecated;
C++
virtual __fastcall Boolean MsgSetRange(int Flags, TSystemTimeRangeArray SysTime);
virtual __fastcall Boolean MsgSetRange(int Flags, PSystemTime SysTime, int Unused = 0);

MsgSetCalColors is used to implement the range specified by the Date and MaxDate properties. This protected method sets the selected dates using the Windows API call MonthCal_SetRange function.  

The Flags parameter indicates what type of information is included in the SysTime array. It includes the GDTR_MIN flag if a minimum date is supplied and GDTR_MAX if a maximum date is supplied. 

The SysTime parameter is a two-element array containing the minimum date as the first element and the maximum date as the second element. These values can be obtained from the MinDate and MaxDate properties by calling DateTimeToSystemTime

MsgSetRange returns true if the range is set successfully, false otherwise. 

 

Copyright(C) 2009 Embarcadero Technologies, Inc. All Rights Reserved.
What do you think about this topic? Send feedback!