MonthCalendar.SetCalendarDimensions(Int32, Int32) 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.
Sets the number of columns and rows of months to display.
public:
void SetCalendarDimensions(int x, int y);
public void SetCalendarDimensions (int x, int y);
member this.SetCalendarDimensions : int * int -> unit
Public Sub SetCalendarDimensions (x As Integer, y As Integer)
Parameters
- x
- Int32
The number of columns.
- y
- Int32
The number of rows.
Exceptions
x
or y
is less than 1.
Remarks
The maximum number of months that you can display is 12, restricted to one calendar year. The product of the x
and y
parameters should be 12 or less. For values of x
and y
that have a product of more than 12, the greater of the x
and y
values will be iteratively reduced until the product is 12 or less.