Skip to main content
Skip table of contents

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
TypeNameMethods
IList<Chunk>Chunks
Gets all the chunks in this element.
get
intType
Gets the type of the text element.
get

Methods

Public methods
ReturnsName
boolIsContent()
boolIsNestable()
boolProcess(IElementListener listener)
Processes the element by adding it (or the different parts) to an
IElementListener.
stringToString()
Gets the content of the text element.

Details

Summary

Interface for a text element.

Methods

Process
public bool Process(IElementListener listener)
Arguments
TypeNameDescription
IElementListenerlisteneran 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

JavaScript errors detected

Please note, these errors can depend on your browser setup.

If this problem persists, please contact our support.