Class RootLayoutArea
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
Fields
emptyArea
Indicates whether the area already has some placed content or not.
protected bool emptyArea
Field Value
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
boolindicates whether the area already has some placed content or not.