This may be a very dumb question, but I am somewhat new to dotnet/C#, so please bear with me.
I am not able to use the AODL classes/methods without using their full names, e.g. AODL.document.spreadsheetDocuments.spreadsheetDocument...
In the code snippets, everything is referenced only by its name, without any further diving into the class hierarchy.
How do I do this?
The administrator has disabled public write access.
Re:Class/method referencing in AODL
Date: 2007/07/04 00:50
By: Stefan Max
Status: User
Karma: 0  
Fresh Boarder
Posts: 2
I found out myself, just had to use the "using" directive a bit more excessively.
The administrator has disabled public write access.
Re:Class/method referencing in AODL
Date: 2007/09/27 03:18
By: Oerb
Status: User
Karma: 0  
Junior Boarder
Posts: 7
Stefan Max wrote: I found out myself, just had to use the "using" directive a bit more excessively.
yea, so it is...
using unoidl.com.sun.star.lang; using unoidl.com.sun.star.uno; using unoidl.com.sun.star.bridge; using unoidl.com.sun.star.frame; //using NUnit.Framework /* don't work but has too if you look in the Examples on Opendocument4all using System.Xml; using AODL.Document.Content.Tables; using AODL.Document.TextDocuments; using AODL.Document.Styles; using AODL.Document.Content.Text; using OpenOfficeLib.Connection; using OpenOfficeLib.Document; using OpenOfficeLib.Printer;
The administrator has disabled public write access.