[]
        
(Showing Draft Content)

GrapeCity.Documents.Text.FontWriter.CharsToStream

CharsToStream Method

CharsToStream(Stream, Font, Utf32CodeSet, FontSubsetFlags)

Writes a subset of the font containing the specified UTF-32 characters to a stream.

Declaration
public int CharsToStream(Stream stream, Font font, Utf32CodeSet utf32CodeSet, FontSubsetFlags subsetFlags = FontSubsetFlags.PdfTextField)
Public Function CharsToStream(stream As Stream, font As Font, utf32CodeSet As Utf32CodeSet, Optional subsetFlags As FontSubsetFlags = FontSubsetFlags.PdfTextField) As Integer
Parameters
Type Name Description
Stream stream

The destination Stream object.

Font font

The Font object to serialize.

Utf32CodeSet utf32CodeSet

A set of UTF-32 characters to be supported in the resulting font subset.

FontSubsetFlags subsetFlags

Font serialization options.

Returns
Type Description
int

The number of bytes saved to the stream.

CharsToStream(Stream, Font, HashSet<int>, FontSubsetFlags)

Writes a subset of the font containing the specified UTF-32 characters to a stream.

Declaration
public int CharsToStream(Stream stream, Font font, HashSet<int> utf32Chars, FontSubsetFlags subsetFlags = FontSubsetFlags.PdfTextField)
Public Function CharsToStream(stream As Stream, font As Font, utf32Chars As HashSet(Of Integer), Optional subsetFlags As FontSubsetFlags = FontSubsetFlags.PdfTextField) As Integer
Parameters
Type Name Description
Stream stream

The destination Stream object.

Font font

The Font object to serialize.

HashSet<int> utf32Chars

UTF-32 characters to be supported in the resulting font subset.

FontSubsetFlags subsetFlags

Font serialization options.

Returns
Type Description
int

The number of bytes saved to the stream.