[]
Represents a bead of a PDF article thread.
public class ArticleBead : PdfDictWrapper, IPdfDict
Initializes a new instance of the ArticleBead class.
public ArticleBead()
Initializes a new instance of the ArticleBead class.
public ArticleBead(Page page, RectangleF bounds)
page
PageThe bead's page.
bounds
System.Drawing.RectangleFThe bead's bounds on the page.
Initializes a new instance of the ArticleBead class.
public ArticleBead(Page page)
page
PageThe bead's page.
Gets or sets the location of this ArticleBead on the page. The coordinates of the rectangle are relative to the upper left corner of the page's media box, with the Y (vertical) coordinates increasing from top to bottom.
public RectangleF Bounds { get; set; }
Gets the GcPdfDocument containing this bead.
public GcPdfDocument Doc { get; }
Gets or sets the Page object where this ArticleBead is displayed.
public Page Page { get; set; }
Gets or sets the rectangle that defines the location and size of this ArticleBead on a page in PDF user space coordinates. The positive X axis extends horizontally to the right, and the positive Y axis extends vertically upward, with the origin usually in the lower left corner of the page.
public RectangleF PdfBounds { get; set; }
Gets the ArticleThread object containing this object.
public ArticleThread Thread { get; }