PageAPI
Inheritance: java.lang.Object
All Implemented Interfaces: com.aspose.xps.features.EventBasedModifications.IModificationAPI
public class PageAPI implements EventBasedModifications.IModificationAPI
The Page element modification API.
Methods
add(T element)
public T <T>add(T element)
Adds a content element (Canvas, Path, or Glyphs)
Parameters:
| Parameter | Type | Description |
|---|---|---|
| element | T | The element to add. |
Returns: T - Added element.
insert(int index, T element)
public T <T>insert(int index, T element)
Inserts an element (Canvas, Path, or Glyphs) to the page at index position.
Parameters:
| Parameter | Type | Description |
|---|---|---|
| index | int | Position at which an element should be inserted. |
| element | T | The element to insert. |
Returns: T - Inserted element.
remove(T element)
public T <T>remove(T element)
Removes an element from the page.
Parameters:
| Parameter | Type | Description |
|---|---|---|
| element | T | The element to remove. |
Returns: T - Removed element.
addCanvas()
public XpsCanvas addCanvas()
Adds a new canvas to the page.
Returns: XpsCanvas - Added canvas.
addGlyphs(XpsFont font, float fontRenderingEmSize, float originX, float originY, String unicodeString)
public XpsGlyphs addGlyphs(XpsFont font, float fontRenderingEmSize, float originX, float originY, String unicodeString)
Adds new glyphs to the page.
Parameters:
| Parameter | Type | Description |
|---|---|---|
| font | XpsFont | Font resource. |
| fontRenderingEmSize | float | Font size. |
| originX | float | Glyphs origin X coordinate. |
| originY | float | Glyphs origin Y coordinate. |
| unicodeString | java.lang.String | String to be printed. |
Returns: XpsGlyphs - Added glyphs.
addGlyphs(String fontFamily, float fontRenderingEmSize, XpsFontStyle fontStyle, float originX, float originY, String unicodeString)
public XpsGlyphs addGlyphs(String fontFamily, float fontRenderingEmSize, XpsFontStyle fontStyle, float originX, float originY, String unicodeString)
Adds new glyphs to the page.
Parameters:
| Parameter | Type | Description |
|---|---|---|
| fontFamily | java.lang.String | Font family. |
| fontRenderingEmSize | float | Font size. |
| fontStyle | XpsFontStyle | Font style. |
| originX | float | Glyphs origin X coordinate. |
| originY | float | Glyphs origin Y coordinate. |
| unicodeString | java.lang.String | String to be printed. |
Returns: XpsGlyphs - Added glyphs.
addOutlineEntry(String description, int outlineLevel, int targetPageNumber)
public void addOutlineEntry(String description, int outlineLevel, int targetPageNumber)
Adds an outline entry to the document.
Parameters:
| Parameter | Type | Description |
|---|---|---|
| description | java.lang.String | The entry description. |
| outlineLevel | int | The outline level. |
| targetPageNumber | int | The target page number. |
addPath(XpsPathGeometry data)
public XpsPath addPath(XpsPathGeometry data)
Adds a new path to the page.
Parameters:
| Parameter | Type | Description |
|---|---|---|
| data | XpsPathGeometry | The geometry of the path. |
Returns: XpsPath - Added path.
createArcSegment(Point2D point, Dimension2D size, float rotationAngle, boolean isLargeArc, XpsSweepDirection sweepDirection)
public XpsArcSegment createArcSegment(Point2D point, Dimension2D size, float rotationAngle, boolean isLargeArc, XpsSweepDirection sweepDirection)
Creates a new stroked elliptical arc segment.
Parameters:
| Parameter | Type | Description |
|---|---|---|
| point | java.awt.geom.Point2D | The end point of the elliptical arc. |
| size | java.awt.geom.Dimension2D | The x and y radius of the elliptical arc as an x,y pair. |
| rotationAngle | float | Indicates how the ellipse is rotated relative to the current coordinate system. |
| isLargeArc | boolean | Determines whether the arc is drawn with a sweep of 180 or greater. |
| sweepDirection | XpsSweepDirection | The direction in which the arc is drawn. |
Returns: XpsArcSegment - New elliptical arc segment.
createArcSegment(Point2D point, Dimension2D size, float rotationAngle, boolean isLargeArc, XpsSweepDirection sweepDirection, boolean isStroked)
public XpsArcSegment createArcSegment(Point2D point, Dimension2D size, float rotationAngle, boolean isLargeArc, XpsSweepDirection sweepDirection, boolean isStroked)
Creates a new elliptical arc segment.
Parameters:
| Parameter | Type | Description |
|---|---|---|
| point | java.awt.geom.Point2D | The end point of the elliptical arc. |
| size | java.awt.geom.Dimension2D | The x and y radius of the elliptical arc as an x,y pair. |
| rotationAngle | float | Indicates how the ellipse is rotated relative to the current coordinate system. |
| isLargeArc | boolean | Determines whether the arc is drawn with a sweep of 180 or greater. |
| sweepDirection | XpsSweepDirection | The direction in which the arc is drawn. |
| isStroked | boolean | Specifies whether the stroke for this segment of the path is drawn. |
Returns: XpsArcSegment - New elliptical arc segment.
createCanvas()
public XpsCanvas createCanvas()
Creates a new canvas.
Returns: XpsCanvas - New canvas.
createColor(XpsIccProfile iccProfile, float[] components)
public XpsColor createColor(XpsIccProfile iccProfile, float[] components)
Creates a new color in ICC based color space.
Parameters:
| Parameter | Type | Description |
|---|---|---|
| iccProfile | XpsIccProfile | The ICC profile resource. |
| components | float[] | Color components. |
Returns: XpsColor - New color.
createColor(float r, float g, float b)
public XpsColor createColor(float r, float g, float b)
Creates a new color in scRGB color space.
Parameters:
| Parameter | Type | Description |
|---|---|---|
| r | float | The red color component. |
| g | float | The green color component. |
| b | float | The blue color component. |
Returns: XpsColor - New color.
createColor(float a, float r, float g, float b)
public XpsColor createColor(float a, float r, float g, float b)
Creates a new color in scRGB color space.
Parameters:
| Parameter | Type | Description |
|---|---|---|
| a | float | The alpha color component. |
| r | float | The red color component. |
| g | float | The green color component. |
| b | float | The blue color component. |
Returns: XpsColor - New color.
createColor(int r, int g, int b)
public XpsColor createColor(int r, int g, int b)
Creates a new color in sRGB color space.
Parameters:
| Parameter | Type | Description |
|---|---|---|
| r | int | The red color component. |
| g | int | The green color component. |
| b | int | The blue color component. |
Returns: XpsColor - New color.
createColor(int a, int r, int g, int b)
public XpsColor createColor(int a, int r, int g, int b)
Creates a new color in sRGB color space.
Parameters:
| Parameter | Type | Description |
|---|---|---|
| a | int | The alpha color component. |
| r | int | The red color component. |
| g | int | The green color component. |
| b | int | The blue color component. |
Returns: XpsColor - New color.
createColor(Color color)
public XpsColor createColor(Color color)
Creates a new color.
Parameters:
| Parameter | Type | Description |
|---|---|---|
| color | java.awt.Color | A native color instance for RGB color. |
Returns: XpsColor - New color.
createColor(String path, float[] components)
public XpsColor createColor(String path, float[] components)
Creates a new color in ICC based color space.
Parameters:
| Parameter | Type | Description |
|---|---|---|
| path | java.lang.String | The path to the ICC profile. |
| components | float[] | Color components. |
Returns: XpsColor - New color.
createGlyphs(XpsFont font, float fontRenderingEmSize, float originX, float originY, String unicodeString)
public XpsGlyphs createGlyphs(XpsFont font, float fontRenderingEmSize, float originX, float originY, String unicodeString)
Creates new glyphs.
Parameters:
| Parameter | Type | Description |
|---|---|---|
| font | XpsFont | Font resource. |
| fontRenderingEmSize | float | Font size. |
| originX | float | Glyphs origin X coordinate. |
| originY | float | Glyphs origin Y coordinate. |
| unicodeString | java.lang.String | String to be printed. |
Returns: XpsGlyphs - New glyphs.
createGlyphs(String fontFamily, float fontRenderingEmSize, XpsFontStyle fontStyle, float originX, float originY, String unicodeString)
public XpsGlyphs createGlyphs(String fontFamily, float fontRenderingEmSize, XpsFontStyle fontStyle, float originX, float originY, String unicodeString)
Creates new glyphs.
Parameters:
| Parameter | Type | Description |
|---|---|---|
| fontFamily | java.lang.String | Font family. |
| fontRenderingEmSize | float | Font size. |
| fontStyle | XpsFontStyle | Font style. |
| originX | float | Glyphs origin X coordinate. |
| originY | float | Glyphs origin Y coordinate. |
| unicodeString | java.lang.String | String to be printed. |
Returns: XpsGlyphs - New glyphs.
createGradientStop(XpsColor color, float offset)
public XpsGradientStop createGradientStop(XpsColor color, float offset)
Creates a new gradient stop.
Parameters:
| Parameter | Type | Description |
|---|---|---|
| color | XpsColor | The gradient stop color. |
| offset | float | The gradient offset. |
Returns: XpsGradientStop - New gradient stop.
createGradientStop(Color color, float offset)
public XpsGradientStop createGradientStop(Color color, float offset)
Creates a new gradient stop.
Parameters:
| Parameter | Type | Description |
|---|---|---|
| color | java.awt.Color | The gradient stop color. |
| offset | float | The gradient offset. |
Returns: XpsGradientStop - New gradient stop.
createImageBrush(XpsImage image, Rectangle2D viewbox, Rectangle2D viewport)
public XpsImageBrush createImageBrush(XpsImage image, Rectangle2D viewbox, Rectangle2D viewport)
Creates a new image brush.
Parameters:
| Parameter | Type | Description |
|---|---|---|
| image | XpsImage | An image resource. |
| viewbox | java.awt.geom.Rectangle2D | The position and dimensions of the brush’s source content. |
| viewport | java.awt.geom.Rectangle2D | The region in the containing coordinate space of the prime brush tile that is (possibly repeatedly) applied to fill the region to which the brush is applied |
Returns: XpsImageBrush - New image brush.
createImageBrush(String imagePath, Rectangle2D viewbox, Rectangle2D viewport)
public XpsImageBrush createImageBrush(String imagePath, Rectangle2D viewbox, Rectangle2D viewport)
Creates a new image brush.
Parameters:
| Parameter | Type | Description |
|---|---|---|
| imagePath | java.lang.String | The path to the image to take as a brush tile. |
| viewbox | java.awt.geom.Rectangle2D | The position and dimensions of the brush’s source content. |
| viewport | java.awt.geom.Rectangle2D | The region in the containing coordinate space of the prime brush tile that is (possibly repeatedly) applied to fill the region to which the brush is applied |
Returns: XpsImageBrush - New image brush.
createLinearGradientBrush(Point2D startPoint, Point2D endPoint)
public XpsLinearGradientBrush createLinearGradientBrush(Point2D startPoint, Point2D endPoint)
Creates a new linear gradient brush.
Parameters:
| Parameter | Type | Description |
|---|---|---|
| startPoint | java.awt.geom.Point2D | The starting point of the linear gradient. |
| endPoint | java.awt.geom.Point2D | The end point of the linear gradient. |
Returns: XpsLinearGradientBrush - New linear gradient brush.
createLinearGradientBrush(List gradientStops, Point2D startPoint, Point2D endPoint)
public XpsLinearGradientBrush createLinearGradientBrush(List<XpsGradientStop> gradientStops, Point2D startPoint, Point2D endPoint)
Creates a new linear gradient brush.
Parameters:
| Parameter | Type | Description |
|---|---|---|
| gradientStops | java.util.List<com.aspose.xps.XpsGradientStop> | The list of gradient stops. |
| startPoint | java.awt.geom.Point2D | The starting point of the linear gradient. |
| endPoint | java.awt.geom.Point2D | The end point of the linear gradient. |
Returns: XpsLinearGradientBrush - New linear gradient brush.
createMatrix(float m11, float m12, float m21, float m22, float m31, float m32)
public XpsMatrix createMatrix(float m11, float m12, float m21, float m22, float m31, float m32)
Creates a new affine transformation matrix.
Parameters:
| Parameter | Type | Description |
|---|---|---|
| m11 | float | Element 11. |
| m12 | float | Element 12. |
| m21 | float | Element 21. |
| m22 | float | Element 22. |
| m31 | float | Element 31. |
| m32 | float | Element 32. |
Returns: XpsMatrix - New affine transformation matrix.
createPath(XpsPathGeometry data)
public XpsPath createPath(XpsPathGeometry data)
Creates a new path.
Parameters:
| Parameter | Type | Description |
|---|---|---|
| data | XpsPathGeometry | The geometry of the path. |
Returns: XpsPath - New path.
createPathFigure(Point2D startPoint)
public XpsPathFigure createPathFigure(Point2D startPoint)
Creates a new open path figure.
Parameters:
| Parameter | Type | Description |
|---|---|---|
| startPoint | java.awt.geom.Point2D | The starting point for the first segment of the path figure. |
Returns: XpsPathFigure - New path figure.
createPathFigure(Point2D startPoint, boolean isClosed)
public XpsPathFigure createPathFigure(Point2D startPoint, boolean isClosed)
Creates a new path figure.
Parameters:
| Parameter | Type | Description |
|---|---|---|
| startPoint | java.awt.geom.Point2D | The starting point for the first segment of the path figure. |
| isClosed | boolean | Specifies whether the path is closed. If set to true, the stroke is drawn “closed”, that is, the last point in the last segment of the path figure is connected with the point specified in the StartPoint attribute, otherwise the stroke is drawn “open”, and the last point is not connected to the start point. Only applicable if the path figure is used in a Path element that specifies a stroke. |
Returns: XpsPathFigure - New path figure.
createPathFigure(Point2D startPoint, List segments)
public XpsPathFigure createPathFigure(Point2D startPoint, List<XpsPathSegment> segments)
Creates a new open path figure.
Parameters:
| Parameter | Type | Description |
|---|---|---|
| startPoint | java.awt.geom.Point2D | The starting point for the first segment of the path figure. |
| segments | java.util.List<com.aspose.xps.XpsPathSegment> | List of path segments. |
Returns: XpsPathFigure - New path figure.
createPathFigure(Point2D startPoint, List segments, boolean isClosed)
public XpsPathFigure createPathFigure(Point2D startPoint, List<XpsPathSegment> segments, boolean isClosed)
Creates a new path figure.
Parameters:
| Parameter | Type | Description |
|---|---|---|
| startPoint | java.awt.geom.Point2D | The starting point for the first segment of the path figure. |
| segments | java.util.List<com.aspose.xps.XpsPathSegment> | List of path segments. |
| isClosed | boolean | Specifies whether the path is closed. If set to true, the stroke is drawn “closed”, that is, the last point in the last segment of the path figure is connected with the point specified in the StartPoint attribute, otherwise the stroke is drawn “open”, and the last point is not connected to the start point. Only applicable if the path figure is used in a Path element that specifies a stroke. |
Returns: XpsPathFigure - New path figure.
createPathGeometry()
public XpsPathGeometry createPathGeometry()
Creates a new path geometry.
Returns: XpsPathGeometry - New path geometry.
createPathGeometry(String abbreviatedGeometry)
public XpsPathGeometry createPathGeometry(String abbreviatedGeometry)
Creates a new path geometry specified with abbreviated form.
Parameters:
| Parameter | Type | Description |
|---|---|---|
| abbreviatedGeometry | java.lang.String | Abbreviated form of path geometry. |
Returns: XpsPathGeometry - New path geometry.
createPathGeometry(List pathFigures)
public XpsPathGeometry createPathGeometry(List<XpsPathFigure> pathFigures)
Creates a new path geometry with specified list of path figures.
Parameters:
| Parameter | Type | Description |
|---|---|---|
| pathFigures | java.util.List<com.aspose.xps.XpsPathFigure> | List of path figures. |
Returns: XpsPathGeometry - New path geometry.
createPolyBezierSegment(Point2D[] points)
public XpsPolyBezierSegment createPolyBezierSegment(Point2D[] points)
Creates a new set of stroked cubic B?zier curves.
Parameters:
| Parameter | Type | Description |
|---|---|---|
| points | java.awt.geom.Point2D[] | Control points for multiple B?zier segments. |
Returns: XpsPolyBezierSegment - New cubic B?zier curves segment.
createPolyBezierSegment(Point2D[] points, boolean isStroked)
public XpsPolyBezierSegment createPolyBezierSegment(Point2D[] points, boolean isStroked)
Creates a new set of cubic B?zier curves.
Parameters:
| Parameter | Type | Description |
|---|---|---|
| points | java.awt.geom.Point2D[] | Control points for multiple B?zier segments. |
| isStroked | boolean | Specifies whether the stroke for this segment of the path is drawn. |
Returns: XpsPolyBezierSegment - New cubic B?zier curves segment.
createPolyLineSegment(Point2D[] points)
public XpsPolyLineSegment createPolyLineSegment(Point2D[] points)
Creates a new stroked polygonal drawing containing an arbitrary number of individual vertices.
Parameters:
| Parameter | Type | Description |
|---|---|---|
| points | java.awt.geom.Point2D[] | A set of coordinates for the multiple segments that define the poly line segment. |
Returns: XpsPolyLineSegment - New polygonal drawing segment.
createPolyLineSegment(Point2D[] points, boolean isStroked)
public XpsPolyLineSegment createPolyLineSegment(Point2D[] points, boolean isStroked)
Creates a new polygonal drawing containing an arbitrary number of individual vertices.
Parameters:
| Parameter | Type | Description |
|---|---|---|
| points | java.awt.geom.Point2D[] | A set of coordinates for the multiple segments that define the poly line segment. |
| isStroked | boolean | Specifies whether the stroke for this segment of the path is drawn. |
Returns: XpsPolyLineSegment - New polygonal drawing segment.
createPolyQuadraticBezierSegment(Point2D[] points)
public XpsPolyQuadraticBezierSegment createPolyQuadraticBezierSegment(Point2D[] points)
Creates a new set of stroked quadratic B?zier curves from the previous point in the path figure through a set of vertices, using specified control points.
Parameters:
| Parameter | Type | Description |
|---|---|---|
| points | java.awt.geom.Point2D[] | Control points for multiple quadratic B?zier segments. |
Returns: XpsPolyQuadraticBezierSegment - New quadratic B?zier curves segment.
createPolyQuadraticBezierSegment(Point2D[] points, boolean isStroked)
public XpsPolyQuadraticBezierSegment createPolyQuadraticBezierSegment(Point2D[] points, boolean isStroked)
Creates a new set of quadratic B?zier curves from the previous point in the path figure through a set of vertices, using specified control points.
Parameters:
| Parameter | Type | Description |
|---|---|---|
| points | java.awt.geom.Point2D[] | Control points for multiple quadratic B?zier segments. |
| isStroked | boolean | Specifies whether the stroke for this segment of the path is drawn. |
Returns: XpsPolyQuadraticBezierSegment - New quadratic B?zier curves segment.
createRadialGradientBrush(Point2D center, Point2D gradientOrigin, float radiusX, float radiusY)
public XpsRadialGradientBrush createRadialGradientBrush(Point2D center, Point2D gradientOrigin, float radiusX, float radiusY)
Creates a new radial gradient brush.
Parameters:
| Parameter | Type | Description |
|---|---|---|
| center | java.awt.geom.Point2D | The center point of the radial gradient (that is, the center of the ellipse). |
| gradientOrigin | java.awt.geom.Point2D | The origin point of the radial gradient. |
| radiusX | float | The radius in the x dimension of the ellipse which defines the radial gradient. |
| radiusY | float | The radius in the y dimension of the ellipse which defines the radial gradient. |
Returns: XpsRadialGradientBrush - New radial gradient brush.
createRadialGradientBrush(List gradientStops, Point2D center, Point2D gradientOrigin, float radiusX, float radiusY)
public XpsRadialGradientBrush createRadialGradientBrush(List<XpsGradientStop> gradientStops, Point2D center, Point2D gradientOrigin, float radiusX, float radiusY)
Creates a new radial gradient brush.
Parameters:
| Parameter | Type | Description |
|---|---|---|
| gradientStops | java.util.List<com.aspose.xps.XpsGradientStop> | The list of gradient stops. |
| center | java.awt.geom.Point2D | The center point of the radial gradient (that is, the center of the ellipse). |
| gradientOrigin | java.awt.geom.Point2D | The origin point of the radial gradient. |
| radiusX | float | The radius in the x dimension of the ellipse which defines the radial gradient. |
| radiusY | float | The radius in the y dimension of the ellipse which defines the radial gradient. |
Returns: XpsRadialGradientBrush - New radial gradient brush.
createSolidColorBrush(XpsColor color)
public XpsSolidColorBrush createSolidColorBrush(XpsColor color)
Creates a new solid color brush.
Parameters:
| Parameter | Type | Description |
|---|---|---|
| color | XpsColor | The color for filled elements. |
Returns: XpsSolidColorBrush - New solid color brush.
createSolidColorBrush(Color color)
public XpsSolidColorBrush createSolidColorBrush(Color color)
Creates a new solid color brush.
Parameters:
| Parameter | Type | Description |
|---|---|---|
| color | java.awt.Color | The color for filled elements. |
Returns: XpsSolidColorBrush - New solid color brush.
createVisualBrush(XpsContentElement element, Rectangle2D viewbox, Rectangle2D viewport)
public XpsVisualBrush createVisualBrush(XpsContentElement element, Rectangle2D viewbox, Rectangle2D viewport)
Creates a new visual brush.
Parameters:
| Parameter | Type | Description |
|---|---|---|
| element | XpsContentElement | The XPS element (Canvas, Path, or Glyphs) for Visual property od visual brush. |
| viewbox | java.awt.geom.Rectangle2D | The position and dimensions of the brush’s source content. |
| viewport | java.awt.geom.Rectangle2D | The region in the containing coordinate space of the prime brush tile that is (possibly repeatedly) applied to fill the region to which the brush is applied |
Returns: XpsVisualBrush - New visual brush.
equals(Object arg0)
public boolean equals(Object arg0)
Parameters:
| Parameter | Type | Description |
|---|---|---|
| arg0 | java.lang.Object |
Returns: boolean
getClass()
public final native Class<?> getClass()
Returns: java.lang.Class
getHeight()
public float getHeight()
Returns the height of the page, expressed as a real number in units of the effective coordinate space.
Returns: float - The height of the page.
getPageCount()
public int getPageCount()
Returns the number of pages in the active document.
Returns: int - The number of pages in the active document.
getTotalPageCount()
public int getTotalPageCount()
Returns the total number of pages in all documents inside XPS document.
Returns: int - The total number of pages in all documents inside XPS document.
getUtils()
public DocumentUtils getUtils()
Gets the object that provides utilities beyond the formal XPS manipulation API.
Returns: DocumentUtils - The object that provides utilities beyond the formal XPS manipulation API.
getWidth()
public float getWidth()
Returns the width of the page, expressed as a real number in units of the effective coordinate space.
Returns: float - The width of the page.
hashCode()
public native int hashCode()
Returns: int
insertCanvas(int index)
public XpsCanvas insertCanvas(int index)
Inserts a new canvas to the page at index position.
Parameters:
| Parameter | Type | Description |
|---|---|---|
| index | int | Position at which a new canvas should be inserted. |
Returns: XpsCanvas - Inserted canvas.
insertGlyphs(int index, XpsFont font, float fontSize, float originX, float originY, String unicodeString)
public XpsGlyphs insertGlyphs(int index, XpsFont font, float fontSize, float originX, float originY, String unicodeString)
Inserts new glyphs to the page at index position.
Parameters:
| Parameter | Type | Description |
|---|---|---|
| index | int | Position at which new glyphs should be inserted. |
| font | XpsFont | Font resource. |
| fontSize | float | Font size. |
| originX | float | Glyphs origin X coordinate. |
| originY | float | Glyphs origin Y coordinate. |
| unicodeString | java.lang.String | String to be printed. |
Returns: XpsGlyphs - Inserted glyphs.
insertGlyphs(int index, String fontFamily, float fontSize, XpsFontStyle fontStyle, float originX, float originY, String unicodeString)
public XpsGlyphs insertGlyphs(int index, String fontFamily, float fontSize, XpsFontStyle fontStyle, float originX, float originY, String unicodeString)
Inserts new glyphs to the page at index position.
Parameters:
| Parameter | Type | Description |
|---|---|---|
| index | int | Position at which new glyphs should be inserted. |
| fontFamily | java.lang.String | Font family. |
| fontSize | float | Font size. |
| fontStyle | XpsFontStyle | Font style. |
| originX | float | Glyphs origin X coordinate. |
| originY | float | Glyphs origin Y coordinate. |
| unicodeString | java.lang.String | String to be printed. |
Returns: XpsGlyphs - Inserted glyphs.
insertPath(int index, XpsPathGeometry data)
public XpsPath insertPath(int index, XpsPathGeometry data)
Inserts a new path to the page at index position.
Parameters:
| Parameter | Type | Description |
|---|---|---|
| index | int | Position at which a new path should be inserted. |
| data | XpsPathGeometry | The geometry of the path. |
Returns: XpsPath - Inserted path.
notify()
public final native void notify()
notifyAll()
public final native void notifyAll()
removeAt(int index)
public XpsContentElement removeAt(int index)
Removes an element at index position from the page.
Parameters:
| Parameter | Type | Description |
|---|---|---|
| index | int | Position at which element should be removed. |
Returns: XpsContentElement - Removed element.
setHeight(float value)
public void setHeight(float value)
Sets the height of the page, expressed as a real number in units of the effective coordinate space.
Parameters:
| Parameter | Type | Description |
|---|---|---|
| value | float | The height of the page. |
setWidth(float value)
public void setWidth(float value)
Sets the width of the page, expressed as a real number in units of the effective coordinate space.
Parameters:
| Parameter | Type | Description |
|---|---|---|
| value | float | The width of the page. |
toString()
public String toString()
Returns: java.lang.String
wait()
public final void wait()
wait(long arg0)
public final native void wait(long arg0)
Parameters:
| Parameter | Type | Description |
|---|---|---|
| arg0 | long |
wait(long arg0, int arg1)
public final void wait(long arg0, int arg1)
Parameters:
| Parameter | Type | Description |
|---|---|---|
| arg0 | long | |
| arg1 | int |