Can someone guide me how to set bullet offset position, bullet font and bullet
color uisng openoffice api for java
PropertyValue [] aProps = (PropertyValue [] ) xNum.getByIndex ( 0 );
// Iterate over the PropertyValue's for this numbering level,
// looking for the 'NumberingType' and 'BulletChar' properties
boolean bulletCharFound = false;
for ( PropertyValue prop: aProps ) {
if (prop.Name.equals("NumberingType")) {
// bullets may be put via CHAR_SPECIAL
prop.Value = new Short(NumberingType.CHAR_SPECIAL);
}
if (prop.Name.equals("BulletChar")) {
// this should not append as the property does not exist
// unless NumberingType is CHAR_SPECIAL
// (which was probably not the case when we retrieved the properties)
// prop.Value = "-";
bulletCharFound = true;
}
how to set a bigger round bullet(symbol) and set the indent for the bullet and
indent for the text
}
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]