I´m using the 2.0 version. Don´t know if it´s 2.0.0 or 2.0.1. Here is the code I use to see the available properties:
XTextFieldsSupplier xTextFieldsSupplier = (XTextFieldsSupplier) UnoRuntime.queryInterface(XTextFieldsSupplier.class, component); XEnumerationAccess xEnumeratedFields = xTextFieldsSupplier .getTextFields(); XEnumeration enumeration = xEnumeratedFields.createEnumeration(); while (enumeration.hasMoreElements()) { Object field = enumeration.nextElement(); XDependentTextField dependentTextField = (XDependentTextField) UnoRuntime.queryInterface(XDependentTextField.class, field); XPropertySet propertySet = dependentTextField .getTextFieldMaster(); String name = (String) propertySet.getPropertyValue("Name"); if (name.equals(myFieldName)) { XPropertySet fieldProperties = (XPropertySet) UnoRuntime .queryInterface(XPropertySet.class, field); String str = ""; for (Property property : fieldProperties .getPropertySetInfo().getProperties()) { str = str + property.Name + "\n"; } System.out.println(str);; } On 11/1/05, Stephan Wunderlich - Sun Germany - ham02 - Hamburg <[EMAIL PROTECTED]> wrote: > Hi Fabricio, > > > I tried that. The only properties that appeared were: > > AnchorType > > AnchorTypes > > IsFixedLanguage > > IsShowFormula > > IsVisible > > NumberFormat > > TextWrap > > mmmm .... which Office version do you use ? ... According to the > idl-documentation the property "IsFieldDisplayed" was introduced for OOo > 2.0.1 and so will only be available in the current development built. > > Regards > > Stephan --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]