Show / Hide Table of Contents

Class CharIterator

CharIterator is an iterator type that can be used to traverse CharData in the current e_text element. For a sample use case, please take a look at ElementReaderAdv sample project.

Inheritance
System.Object
Iterator<CharData>
CharIterator
Implements
System.IDisposable
Inherited Members
Iterator<CharData>.Dispose()
Iterator<CharData>.Dispose(Boolean)
Iterator<CharData>.Next()
Iterator<CharData>.HasNext()
Iterator<CharData>.op_Assign(Iterator<CharData>)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ToString()
System.Object.ReferenceEquals(System.Object, System.Object)
Namespace: pdftron.PDF
Assembly: PDFNetAndroid.dll
Syntax
public class CharIterator : Iterator<CharData>, IDisposable

Methods

Current()

Gets the current CharData value

Declaration
public override CharData Current()
Returns
Type Description
CharData

current Unicode value

Overrides
pdftron.Common.Iterator<pdftron.PDF.CharData>.Current()

Equals(Object)

checks if this CharData object is the same as the given object

Declaration
public bool Equals(object o)
Parameters
Type Name Description
System.Object o

a given object

Returns
Type Description
System.Boolean

true if equals to the give object

Operators

Equality(CharIterator, CharIterator)

Equality operator checks whether two CharData objects are the same

Declaration
public static bool operator ==(CharIterator l, CharIterator r)
Parameters
Type Name Description
CharIterator l

the CharData on the left of the operator

CharIterator r

the CharData on the right of the operator

Returns
Type Description
System.Boolean

true if both objects are equal

Inequality(CharIterator, CharIterator)

Inequality operator checks whether two CharData objects are different

Declaration
public static bool operator !=(CharIterator l, CharIterator r)
Parameters
Type Name Description
CharIterator l

the CharData on the left of the operator

CharIterator r

the CharData on the right of the operator

Returns
Type Description
System.Boolean

true if both objects are not equal

Implements

System.IDisposable
In This Article
Back to top Generated by DocFX