Klasse ClippingEvent
java.lang.Object
java.util.EventObject
com.inet.report.event.ClippingEvent
- Alle implementierten Schnittstellen:
Serializable
An object of this type is passed to a clipping listener on the event of a clip while rendering an element.
This object contains three pieces of information:
- A reference to the element which is being clipped.
- The actual value of the element which is being clipped.
- The text string of what is being displayed after the clip.
- Seit:
- 6.1
- Siehe auch:
-
Feldübersicht
Von Klasse geerbte Felder EventObject
source -
Konstruktorübersicht
KonstruktorenKonstruktorBeschreibungClippingEvent(Object source) FOR INTERNAL USE ONLYClippingEvent(Object source, Object value, String valueAfter) FOR INTERNAL USE ONLY -
Methodenübersicht
Modifikator und TypMethodeBeschreibungReturns the displayed text value after clipping.Returns the element on which the clipping occurred.Returns the actual value which will be clipped or truncated.Von Klasse geerbte Methoden EventObject
getSource, toString
-
Konstruktordetails
-
ClippingEvent
-
ClippingEvent
-
-
Methodendetails
-
getElement
Returns the element on which the clipping occurred.- Gibt zurück:
- An Element on which the clipping occurred.
- Seit:
- 6.1
-
getValueBeforeClip
Returns the actual value which will be clipped or truncated.- Gibt zurück:
- The actual value (Long, Double, String, etc...).
- Seit:
- 6.1
-
getClippedResult
Returns the displayed text value after clipping.- Gibt zurück:
- The clipped value as a string object.
- Seit:
- 6.1
-