Skip to content

Latest commit

 

History

History
50 lines (29 loc) · 1.66 KB

Access.CommandButton.Width.md

File metadata and controls

50 lines (29 loc) · 1.66 KB
title keywords f1_keywords api_name ms.assetid ms.date ms.localizationpriority
CommandButton.Width property (Access)
vbaac10.chm10469
vbaac10.chm10469
Access.CommandButton.Width
03729218-4c70-8312-ab61-be3cf4b7a029
02/27/2019
medium

CommandButton.Width property (Access)

Gets or sets the width of the specified object in twips. Read/write Integer.

Syntax

expression.Width

expression A variable that represents a CommandButton object.

Remarks

For report controls, you can set the Width property when you print or preview a report only by using a macro or an event procedure specified in a section's OnFormat event property setting.

You can't set this property for an object after the print process has started.

Microsoft Access automatically sets the Width property when you create or size a control or when you size a window in form Design view or report Design view.

The width of forms and reports is measured from the inside of their borders. The width of controls is measured from the center of their borders so that controls with different border widths align correctly.

The margins for forms and reports are set in the Page Setup dialog box, available by choosing Page Setup on the File menu.

Example

The following code resizes a command button to a 1-inch by 1-inch square button (the default unit of measurement in Visual Basic is twips; 1440 twips equals one inch).

Me!cmdSizeButton.Height = 1440 ' 1440 twips = 1 inch. 
Me!cmdSizeButton.Width = 1440

[!includeSupport and feedback]