Class SubPath

SubPath class

Represents vector graphics object on the page. Basically, vector graphics objects are represented by two groups of SubPaths. One of them is represented by a set of lines and curves. Others are presented as rectangles and can sometimes be confused. Usually it is a rectangular area that has a color, but very often this rectangle is placed at the beginning of the page and defines the entire space of the page in white. So you get the SubPath, but visually you only see the text on the page.

public sealed class SubPath : GraphicElement

Properties

NameDescription
Operators { get; }Gets a collection of operators representing the element.
Parent { get; }Gets the current XFormPlacement in which the element is located.
virtual Position { get; set; }Gets or sets the position in the current coordinate space. If Parent is not !:null then the element have xForm coordinate space.
override Rectangle { get; }

Methods

NameDescription
virtual AddOnPage(Page)Adds current element on the page. If there are many elements to add better use AddGraphics.
Remove()Removes current element from the page. If there are many elements to remove better use DeleteGraphics.

See Also