MonthCalendar.GetDisplayRange(Boolean) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Retrieves date information that represents the low and high limits of the displayed dates of the control.
public:
System::Windows::Forms::SelectionRange ^ GetDisplayRange(bool visible);
public System.Windows.Forms.SelectionRange GetDisplayRange (bool visible);
member this.GetDisplayRange : bool -> System.Windows.Forms.SelectionRange
Public Function GetDisplayRange (visible As Boolean) As SelectionRange
Parameters
- visible
- Boolean
true
to retrieve only the dates that are fully contained in displayed months; otherwise, false
.
Returns
The begin and end dates of the displayed calendar.
Remarks
The GetDisplayRange method returns a SelectionRange that contains the begin and end dates displayed in the current view of the control. You can modify the returned range based on the value you specify for the visible
parameter. By specifying false
, you can retrieve all dates displayed on the control; specifying true
retrieves only those dates that are part of fully displayed months.