Wu wirst wahrscheinlich lieber die "Lotus Symphony LotusScript API (http://www-10.lotus.com/ldd/lswiki.nsf/dx/Demo_Lotus_Symphony_LotusScript_API)" verwenden wollen:
Dim application As New SymphonyApplication
Dim spreadsheets As SymphonySpreadsheets
Dim spreadsheet As SymphonySpreadsheet
Set spreadsheets = application.Spreadsheets
Set spreadsheet = spreadsheets.AddSpreadsheet("",False,True)
Dim sheet As SymphonySheet
Set sheet = spreadsheet.ActiveSheet
Dim range As SymphonyRange
Set range = sheet.Range("A1:E10")
range.Text = "Hello World"
Call range.AutoFit
Call range.AutoFormat( spreadsheet.TableStyles.Item(4).Name )
The documentation of the lotus script API can be found in the development toolkit (http://symphony.lotus.com/software/lotus/symphony/developers.nsf/home).
To use the lotus script API you simply need Notes 8.5.1 or higher and you must have installed the embedded symphony which comes with your Notes client. In your script you have to use following statement %Include "symphonylsx.lss" to gain access to the API.