property Calendar.AutoSize as AutoSizeEnum
Retrieves or sets a value that indicates whether the control automatically resizes the cell based on the size of the font.

TypeDescription
AutoSizeEnum An AutoSizeEnum expression that indicates whether the control automatically resizes the cell based on the size of the font.

By default, the AutoSize property is exFontSize. The Font property specifies the control's font. The MaxMonthX property specifies the number of months that can displayed on the horizontal axis. The MaxMonthY property specifies the number of months that can displayed on the vertical axis. Use the AutoSize, FixedCellHeight and FixedCellWidth properties to defines the size to display a day in the calendar control. The FixedCellHeight and FixedCellWidth properties has effect only if the AutoSize is exFixedSize. 

The following sample fixes the day's size: 

Calendar1.AutoSize = exFixedSize
Calendar1.FixedCellHeight = 18
Calendar1.FixedCellWidth = 32