Buffer.SerializeGlyphs Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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)
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.