public interface IPropertyContainer
Property type.| Modifier and Type | Method and Description |
|---|---|
void |
deleteOwnProperty(int property)
Deletes the own property of this entity.
|
<T1> T1 |
getDefaultProperty(int property)
Gets the default property from this entity.
|
<T1> T1 |
getOwnProperty(int property)
Gets own property from this entity.
|
<T1> T1 |
getProperty(int property)
Gets the property from this entity.
|
boolean |
hasOwnProperty(int property)
Checks if this entity has the specified property, i.e.
|
boolean |
hasProperty(int property)
Checks if this entity has the specified property.
|
void |
setProperty(int property,
Object value)
Sets a property for this entity.
|
boolean hasProperty(int property)
hasOwnProperty(int),
this method can check parent's properties, styles, etc, depending on the origin of the instanceproperty - the property to be checkedtrue if this instance has given property, false otherwiseboolean hasOwnProperty(int property)
property - the property to be checkedtrue if this instance has given own property, false otherwise<T1> T1 getProperty(int property)
getOwnProperty(int),
this method can check parent's properties, styles, etc, depending on the origin of the instanceT1 - the return type associated with the propertyproperty - the property to be retrievednull will be returned if the property value was not found<T1> T1 getOwnProperty(int property)
null will be returned.T1 - the return type associated with the propertyproperty - the property to be retrievednull will be returned if the property value was not found<T1> T1 getDefaultProperty(int property)
T1 - the return type associated with the propertyproperty - the property to be retrievednull will be returnedvoid setProperty(int property,
Object value)
property - the property to be setvalue - the value of the propertyvoid deleteOwnProperty(int property)
property - the property to be deletedCopyright © 1998–2020 iText Group NV. All rights reserved.