GetASCIMP
Get the internal ASCII import settings for the worksheet. The settings will be returned in an ASCIMP structure. The ASCIMP structure is defined and documented in the oc_types.h header file.
BOOL GetASCIMP( ASCIMP & stAscImp )
TRUE on success, FALSE on failure
EX1
//Get the internal ASCII import settings for the worksheet. The settings will be returned in an ASCIMP structure. void Worksheet_GetASCIMP_Ex1() { Worksheet wks; wks.Create(); if( wks.IsValid() ) { ASCIMP ascimp; if( wks.GetASCIMP(ascimp) ) { printf("Worksheet ASCII import settings obtained.\n"); Tree tr; tr = ascimp; out_tree(tr); } else printf("Failed to get worksheet's ASCII import settings.\n"); } else printf("Failed to create a test worksheet.\n"); }
Worksheet::SetASCIMP
origin.h