MonthCalendar.GetDisplayRange(Boolean) Method

Definition

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.

Applies to

See also