Hi, I had seen in openoffice document that arguments can be passed to the macros... is this the way to declare a macro which can accept arguments.
import com.sun.star.script.provider.XScriptContext;
public class test {
public void testarguments(XScriptContext xSc,Object[] args) {
}
}
also how to pass arguments to this macro from other macros or programs
