METHODS
Code: Select all | Expand
METHOD AddSheet( cNewSheetName )
METHOD Address( nRow, nCol, nRow2, nCol2 ) // Adddress( 1,1 ) -> "B2"
METHOD RowHeight( nRow, nHeight, oFormat, lPixel )
METHOD SetColumnSize( nColFrom, nColTo, nWidth, oFormat, lPixel )
METHOD MergeRange( r1, c1, r2, c2, cValue, oFormat )
METHOD SayImage( nRow, nCol, cImage )
METHOD SayFormula( nRow, nCol, cFormula, oFormat, cPicture )
METHOD Say( nRow, nCol, uValue, oFormat, cPicture )\
// Say() calls SayImage() or SayFormula
METHOD SetBrush( cImage )
//These methods are for Tables only
METHOD SayRow( nRow, aValues, aFormat )
METHOD SetStruct( aStruct, nRow, aGroup )
METHOD SetFooter( aFooter, nRow )
METHOD SetArrayData( aData, aStruct, aGroup )
METHOD CreateFrom( uSrc )
//
METHOD Close()
CreateFrom()
Code: Select all | Expand
oXlsx := XlsxObj( cFile, cSheet )
( cAlias )->( oXlsx:CreateFrom() ) // Creates xlsx sheet from the dbf
oXlsx:Close()
Code: Select all | Expand
oXlsx := XlsxObj( cFile, cSheet )
oXlsx:CreateFrom( oAdoRecordSet ) // Creates xlsx sheet from recordset
oXlsx:Close()
We will provide more information in due course