Type | Description | |||
Long | A long expression that defines the cell's height while the AutoSize property is False. |
Use the AutoSize, FixedCellHeight and FixedCellWidth properties to defines the size of the control's cell. A cell displays a date. The FixedCellHeight and FixedCellWidth properties has effect only if the AutoSize is False.
The following sample fixes the cell's size to (18,32):
Private Sub Form_Load() With Calendar1 .AutoSize = False .FixedCellHeight = 18 .FixedCellWidth = 32 End With End Sub