Table of Contents

Class RootLayoutArea

Namespace
iText.Layout.Layout
Assembly
itext.layout.dll

Represents the root layout area.

public class RootLayoutArea : LayoutArea
Inheritance
RootLayoutArea
Inherited Members

Constructors

RootLayoutArea(int, Rectangle)

Creates the root layout area.

public RootLayoutArea(int pageNumber, Rectangle bBox)

Parameters

pageNumber int

the value number of page

bBox Rectangle

the bounding box

Fields

emptyArea

Indicates whether the area already has some placed content or not.

protected bool emptyArea

Field Value

bool

Methods

Clone()

Creates a "deep copy" of this RootLayoutArea, meaning the object returned by this method will be independent of the object being cloned.

public override LayoutArea Clone()

Returns

LayoutArea

the copied RootLayoutArea.

Remarks

Creates a "deep copy" of this RootLayoutArea, meaning the object returned by this method will be independent of the object being cloned. Note that although the return type of this method is LayoutArea , the actual type of the returned object is RootLayoutArea.

IsEmptyArea()

Indicates whether the area already has some placed content or not.

public virtual bool IsEmptyArea()

Returns

bool

whether the area is empty or not

SetEmptyArea(bool)

Defines whether the area already has some placed content or not.

public virtual void SetEmptyArea(bool emptyArea)

Parameters

emptyArea bool

indicates whether the area already has some placed content or not.