Starts a VDA Tool used for creating an editable 2D array of cells containing string data.
0 | Align cell contents to cell's left edge (left justify). |
1 | Center the cell contents (center justify). |
2 | Align cell contents to the cell's right edge (right justify). |
CWidth A 1D array [0, ..., cols-1] of column widths. If CWidth is not specified, the default column width is 10 characters.
Format A FORTRAN-style format specification for the output. For more information, see the STRING function.
NumCols The number of columns in the table. If NumCols is not specified, the number of columns is calculated from the dimensions of var.
NOTE: If the table size is bigger than the number of visible columns and rows, scrollbars are placed at the right and bottom edges of the view window.
wavedir/lib/vdatools/wztable.pro
wavedir:[LIB.VDATOOLS]WZTABLE.PRO
wavedir\lib\vdatools\wztable.pro
wavedir
is the main PV-WAVE directory. The type of variable used determines the numbers of columns and rows in the table:
vector 1 row with n columns
2D array a matrix of n rows by n columns
NOTE: For information on how to use this VDA Tool, use online Help. Select the On Window command from the VDA Tool Help menu to bring up Help on this VDA Tool.
a = FINDGEN(10,20) WzTable, a, Format = 'f10.2'