Visit Gigasoft's Web Site
 ProEssentials v9 Help

TAColumnWidth

Scope

Pe3do, Pepso, Pego, Pesgo

Type

Property Array of type Int32

Default

PETW_GRAPHED

.NET

PeAnnotation.Table.ColumnWidth

Ocx|Vcl

TAColumnWidth

DLL

PEP_naTACOLUMNWIDTH

 

Purpose

This property controls the width of individual columns. The size is based on character length.

 

Comments

PeAnnotation.Table.ColumnWidth members of Pe3do.PeAnnotation.Table, Pepso.PeAnnotation.Table, Pego.PeAnnotation.Table, Pesgo.PeAnnotation.Table

 

See Also: ShowAllTableAnnotations, and ShowTableAnnotation

 

See Chapter 7, Common Question 37 for more info.

 

OCX Example

PEGraph1.TAColumnWidth(0) = 4

PEGraph1.TAColumnWidth(1) = 19

 

VCL Example

PEGraph1.TAColumnWidth[0] := 4;

PEGraph1. TAColumnWidth [1] := 19;

 

C / C++ Example

int nArray[2];

nArray[0] = 4; //"HELLO"

nArray[1] = 19; //"NUMBER_OF_CHARACTERS"

PEvset (hWndPE, PEP_naTACOLUMNWIDTH, nArray, 2);