Edit

Share via


Buffer.SerializeGlyphs Method

Definition

Overloads

Name Description
SerializeGlyphs(Font, SerializeFormat, SerializeFlag)

Serializes the buffer glyphs to a string using the specified font, format, and flags.

SerializeGlyphs(Int32, Int32)

Serializes a range of buffer glyphs to a string.

SerializeGlyphs(Int32, Int32, Font, SerializeFormat, SerializeFlag)

Serializes a range of buffer glyphs to a string using the specified font, format, and flags.

SerializeGlyphs()

Serializes the buffer glyphs to a string.

SerializeGlyphs(Font)

Serializes the buffer glyphs to a string using the specified font.

SerializeGlyphs(Font, SerializeFormat, SerializeFlag)

Serializes the buffer glyphs to a string using the specified font, format, and flags.

public string SerializeGlyphs(HarfBuzzSharp.Font font, HarfBuzzSharp.SerializeFormat format, HarfBuzzSharp.SerializeFlag flags);

Parameters

font
Font

The font to use for glyph names, or null.

format
SerializeFormat

The serialization format.

flags
SerializeFlag

Flags that control serialization behavior.

Returns

A string containing the serialized glyph data.

Applies to

SerializeGlyphs(Int32, Int32)

Serializes a range of buffer glyphs to a string.

public string SerializeGlyphs(int start, int end);

Parameters

start
Int32

The start index of the range to serialize.

end
Int32

The end index of the range to serialize.

Returns

A string containing the serialized glyph data.

Applies to

SerializeGlyphs(Int32, Int32, Font, SerializeFormat, SerializeFlag)

Serializes a range of buffer glyphs to a string using the specified font, format, and flags.

public string SerializeGlyphs(int start, int end, HarfBuzzSharp.Font font, HarfBuzzSharp.SerializeFormat format, HarfBuzzSharp.SerializeFlag flags);

Parameters

start
Int32

The start index of the range to serialize.

end
Int32

The end index of the range to serialize.

font
Font

The font to use for glyph names, or null.

format
SerializeFormat

The serialization format.

flags
SerializeFlag

Flags that control serialization behavior.

Returns

A string containing the serialized glyph data.

Applies to

SerializeGlyphs()

Serializes the buffer glyphs to a string.

public string SerializeGlyphs();

Returns

A string containing the serialized glyph data.

Applies to

SerializeGlyphs(Font)

Serializes the buffer glyphs to a string using the specified font.

public string SerializeGlyphs(HarfBuzzSharp.Font font);

Parameters

font
Font

The font to use for glyph names, or null.

Returns

A string containing the serialized glyph data.

Applies to