PdfFont.ContainsGlyphsForText Method

Checks whether this font contains all glyphs required to draw the given text.

Namespace:  BitMiracle.Docotic.Pdf
Assembly:  BitMiracle.Docotic.Pdf (in BitMiracle.Docotic.Pdf.dll)

Syntax

C#
public bool ContainsGlyphsForText(
	string text
)
VB
Public Function ContainsGlyphsForText ( 
	text As String
) As Boolean

Parameters

text
Type: System.String
Text to check.

Return Value

Type: Boolean
true if this font contains all glyphs required to draw the text. Otherwise, false.

Exceptions

ExceptionCondition
ArgumentExceptiontext contains an invalid surrogate pair. Either the first character in the pair is not a valid high surrogate or the second character in the pair is not a valid low surrogate.

See Also