ALIGN_DBCREATE_IN_THE_ALIGNER

Default: YES

Options: YES, NO

Selecting YES will allow Click! to align DBCREATE( when used in the
following two formats.

So, this:

dbcreate( 'filename.dbf', { { 'xxxxx', 'C', 23, 0 }, ;
{ 'yyy', 'D', 8, 0 }, ;
{ 'yy', 'C', 8, 0 }, ;
{ 'yuu', 'D', 8, 0 }, ;
{ 'yijiiiyy', 'N', 9, 2 }, ;
{ 'yhhfyy', 'D', 8, 0 } } )

ends up looking like this:

dbcreate( 'FILENAME.DBF', { { 'XXXXX' , 'C', 23, 0 }, ;
{ 'YYY' , 'D', 8, 0 }, ;
{ 'YY' , 'C', 8, 0 }, ;
{ 'YUU' , 'D', 8, 0 }, ;
{ 'YIJIIIYY', 'N', 9, 2 }, ;
{ 'YHHFYY' , 'D', 8, 0 } } )

and:

aSomeArray := { { 'xxxxx', 'C', 23, 0 }, ;
{ 'yyy', 'D', 8, 0 }, ;
{ 'yy', 'C', 8, 0 }, ;
{ 'yuu', 'D', 8, 0 }, ;
{ 'yijiiiyy', 'N', 9, 2 }, ;
{ 'yhhfyy', 'D', 8, 0 } } )

ends up looking like this:

aSomeArray := { { 'XXXXX' , 'C', 23, 0 }, ;
{ 'YYY' , 'D', 8, 0 }, ;
{ 'YY' , 'C', 8, 0 }, ;
{ 'YUU' , 'D', 8, 0 }, ;
{ 'YIJIIIYY', 'N', 9, 2 }, ;
{ 'YHHFYY' , 'D', 8, 0 } } )

Any DBCREATE() which does not follow the above two formats are not
changed, code such as...

local temp := {}

aadd( temp, { 'xxxxx', 'C', 23, 0 } )
aadd( temp, { 'yyy', 'D', 8, 0 } )
aadd( temp, { 'yy', 'C', 8, 0 } )
aadd( temp, { 'yuu', 'D', 8, 0 } )
aadd( temp, { 'yijiiiyy', 'N', 9, 2 } )
aadd( temp, { 'yhhfyy', 'D', 8, 0 } )

dbcreate( filename, temp )

...is ignored.