iText 5

IElement

IElement Public interface

Description

Interface for a text element.

Diagram

flowchart LR classDef interfaceStyle stroke-dasharray: 5 5; classDef abstractStyle stroke-width:4px subgraph iTextSharp.text iTextSharp.text.IElement[[IElement]] class iTextSharp.text.IElement interfaceStyle; end

Members

Properties

Public properties

Type

Name

Methods

IList<

Chunk

>

Chunks


Gets all the chunks in this element.

get

int

Type


Gets the type of the text element.

get

Methods

Public methods

Returns

Name

bool

IsContent

()

bool

IsNestable

()

bool

Process

(

IElementListener

listener)
Processes the element by adding it (or the different parts) to an
IElementListener.

string

ToString

()
Gets the content of the text element.

Details

Summary

Interface for a text element.

Methods

Process

public bool Process(IElementListener listener)

Arguments

Type

Name

Description

IElementListener

listener

an IElementListener

Summary

Processes the element by adding it (or the different parts) to an IElementListener.

Returns

true if the element was processed successfully

IsContent

public bool IsContent()

IsNestable

public bool IsNestable()

ToString

public string ToString()

Summary

Gets the content of the text element.

Returns

the content of the text element

Properties

Type

public int Type { get; }

Summary

Gets the type of the text element.

Value

a type

Chunks

public IList<Chunk> Chunks { get; }

Summary

Gets all the chunks in this element.

Value

an ArrayList

Generated with ModularDoc