[api-dev] XPropertySet , setPropertyValue inconsistencies...

2008-05-23 Thread ashok _
I am trying set the SectionLeftMargin property of an XTextSection : xPropSet.setPropertyValue(SectionLeftMargin, new Long(762)); The above raises an IllegalArgumentException... The section document describes the SectionLeftMargin property as a long datatype..

Re: [api-dev] XPropertySet , setPropertyValue inconsistencies...

2008-05-23 Thread Rony G. Flatscher
ashok _ wrote: I am trying set the SectionLeftMargin property of an XTextSection : xPropSet.setPropertyValue(SectionLeftMargin, new Long(762)); The above raises an IllegalArgumentException... The section document describes the SectionLeftMargin property as a long datatype..

Re: [api-dev] XPropertySet , setPropertyValue inconsistencies...

2008-05-23 Thread Ariel Constenla-Haile
ashok _ escribió: I am trying set the SectionLeftMargin property of an XTextSection : xPropSet.setPropertyValue(SectionLeftMargin, new Long(762)); The above raises an IllegalArgumentException... The section document describes the SectionLeftMargin property as a long datatype..

Re: [api-dev] XPropertySet , setPropertyValue inconsistencies...

2008-05-23 Thread Robert Vojta
Check this page ... http://wiki.services.openoffice.org/wiki/Documentation/DevGuide/ProUNO/Java/Type_Mappings ... you can find UNO - Java type mappings there. -- Robert Vojta - To unsubscribe, e-mail: [EMAIL PROTECTED] For

Re: [api-dev] XPropertySet , setPropertyValue inconsistencies...

2008-05-23 Thread Rony G. Flatscher
P.S.: Here's a listing of com.sun.star.text.TextSection from a student's (Nicole Scholz) work in progress, giving an overview of all members of the service and listing the Java datatypes for properties: *[com.sun.star.text.TextSection

Re: [api-dev] XPropertySet , setPropertyValue inconsistencies...

2008-05-23 Thread ashok _
Rony , Ariel : Thank you very much for the links and explanations, its clear now ! Ashok On Fri, May 23, 2008 at 4:44 PM, Rony G. Flatscher wrote: P.S.: Here's a listing of com.sun.star.text.TextSection from a student's (Nicole Scholz) work in progress, giving an overview of all members of