Show / Hide Table of Contents

Class FontCharCodeIterator

FontCharCodeIterator is an iterator type that can be used to traverse a list of visible char codes in a font embedded in PDF. For more information, please take a look at Font.getCodeIterator().

Inheritance
System.Object
FontCharCodeIterator
Implements
System.IDisposable
Inherited Members
System.Object.ToString()
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
Namespace: pdftron.PDF
Assembly: PDFNet.dll
Syntax
public class FontCharCodeIterator : IDisposable

Methods

Current()

Gets the current Uncode value

Declaration
public int Current()
Returns
Type Description
System.Int32

current Unicode value

Dispose()

Releases all resources used by the FontCharCodeIterator

Declaration
public override sealed void Dispose()

Dispose(Boolean)

Declaration
[HandleProcessCorruptedStateExceptions]
protected virtual void Dispose(bool A_0)
Parameters
Type Name Description
System.Boolean A_0

Finalize()

Allows a FontCharCodeIterator to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection.

Declaration
protected void Finalize()

HasNext()

Determines if the iteration has more elements.

Declaration
public bool HasNext()
Returns
Type Description
System.Boolean

Returns true if the iteration has more elements.

Next()

Iterates to the next object in the iteration

Declaration
public void Next()

Implements

System.IDisposable
Back to top Generated by DocFX