Package org.apache.poi.hemf.record.emf
Class HemfDraw.EmfCloseFigure
- java.lang.Object
-
- org.apache.poi.hemf.record.emf.HemfDraw.EmfCloseFigure
-
- All Implemented Interfaces:
GenericRecord,HemfRecord
- Enclosing class:
- HemfDraw
public static class HemfDraw.EmfCloseFigure extends java.lang.ObjectThis record closes an open figure in a path. Processing the EMR_CLOSEFIGURE record MUST close the figure by drawing a line from the current position to the first point of the figure, and then it MUST connect the lines by using the line join style. If a figure is closed by processing the EMR_LINETO record instead of the EMR_CLOSEFIGURE record, end caps are used to create the corner instead of a join. The EMR_CLOSEFIGURE record SHOULD only be used if there is an open path bracket in the playback device context. A figure in a path is open unless it is explicitly closed by processing this record. Note: A figure can be open even if the current point and the starting point of the figure are the same. After processing the EMR_CLOSEFIGURE record, adding a line or curve to the path MUST start a new figure.
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from interface org.apache.poi.hemf.record.emf.HemfRecord
HemfRecord.RenderBounds
-
-
Constructor Summary
Constructors Constructor Description EmfCloseFigure()
-
Method Summary
All Methods Instance Methods Concrete Methods Default Methods Modifier and Type Method Description voiddraw(org.apache.poi.hemf.draw.HemfGraphics ctx)Draws the record, the default redirects to the parent WMF record drawingHemfRecordTypegetEmfRecordType()default java.util.Map<java.lang.String,java.util.function.Supplier<?>>getGenericProperties()longinit(LittleEndianInputStream leis, long recordSize, long recordId)Init record from streamjava.lang.StringtoString()-
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
Methods inherited from interface org.apache.poi.common.usermodel.GenericRecord
getGenericChildren
-
Methods inherited from interface org.apache.poi.hemf.record.emf.HemfRecord
calcBounds, getGenericRecordType, setHeader
-
-
-
-
Method Detail
-
getEmfRecordType
public HemfRecordType getEmfRecordType()
- Specified by:
getEmfRecordTypein interfaceHemfRecord
-
init
public long init(LittleEndianInputStream leis, long recordSize, long recordId) throws java.io.IOException
Description copied from interface:HemfRecordInit record from stream- Specified by:
initin interfaceHemfRecord- Parameters:
leis- the little endian input streamrecordSize- the size limit for this recordrecordId- the id of theHemfRecordType- Returns:
- count of processed bytes
- Throws:
java.io.IOException- when the inputstream is malformed
-
draw
public void draw(org.apache.poi.hemf.draw.HemfGraphics ctx)
Description copied from interface:HemfRecordDraws the record, the default redirects to the parent WMF record drawing- Specified by:
drawin interfaceHemfRecord- Parameters:
ctx- the drawing context
-
toString
public java.lang.String toString()
- Overrides:
toStringin classjava.lang.Object
-
getGenericProperties
public default java.util.Map<java.lang.String,java.util.function.Supplier<?>> getGenericProperties()
- Specified by:
getGenericPropertiesin interfaceGenericRecord
-
-