Pen.Width

Description

The width of the line or the outline of a graphic control.

Value

An integer in the unit of measure specified for the DataWindow object. Units of measure include Normalized units, thousandths of an inch (1000 = 1 inch), thousandths of a centimeter (1000 = 1 centimeter), or pixels.

Example

The following statement causes the width of a line to be 10 Normalized units if the state column for the row has the value NY. Otherwise, the line is 4 Normalized units wide:

If(state = 'NY', 10, 4)