PsDocument.FillText

FillText(string, Font, float, float)

Adds a text string by filling interrior of glyphs.

public void FillText(string text, Font font, float x, float y)
ParameterTypeDescription
textStringThe text to add.
fontFontSystem font that will be used to draw text.
xSingleX coordinate for text origin.
ySingleY coordinate for text origin.

See Also


FillText(string, float[], Font, float, float)

Adds a text string by filling interrior of glyphs.

public void FillText(string text, float[] advances, Font font, float x, float y)
ParameterTypeDescription
textStringThe text to add.
advancesSingle[]An array of glyphs width. It’s length must comply with the number of glyphs in the string.
fontFontThe font that will be used to draw text.
xSingleX coordinate for text origin.
ySingleY coordinate for text origin.

See Also


FillText(string, DrFont, float, float)

Adds a text string by filling interrior of glyphs.

public void FillText(string text, DrFont drFont, float x, float y)
ParameterTypeDescription
textStringThe text to add.
drFontDrFontDrFont that will be used to draw text. It can be used with custom font that is located in custom folder.
xSingleX coordinate for text origin.
ySingleY coordinate for text origin.

See Also


FillText(string, float[], DrFont, float, float)

Adds a text string by filling interrior of glyphs.

public void FillText(string text, float[] advances, DrFont drFont, float x, float y)
ParameterTypeDescription
textStringThe text to add.
advancesSingle[]An array of glyphs width. It’s length must comply with the number of glyphs in the string.
drFontDrFontDrFont that will be used to draw text. It can be used with custom font that is located in custom folder.
xSingleX coordinate for text origin.
ySingleY coordinate for text origin.

See Also


FillText(string, Font, float, float, Brush)

Adds a text string by filling interrior of glyphs.

public void FillText(string text, Font font, float x, float y, Brush fill)
ParameterTypeDescription
textStringThe text to add.
fontFontSystem font that will be used to draw text.
xSingleX coordinate for text origin.
ySingleY coordinate for text origin.
fillBrushThe fill used for painting glyphs.

See Also


FillText(string, float[], Font, float, float, Brush)

Adds a text string by filling interrior of glyphs.

public void FillText(string text, float[] advances, Font font, float x, float y, Brush fill)
ParameterTypeDescription
textStringThe text to add.
advancesSingle[]An array of glyphs width. It’s length must comply with the number of glyphs in the string.
fontFontSystem font that will be used to draw text.
xSingleX coordinate for text origin.
ySingleY coordinate for text origin.
fillBrushThe fill used for painting glyphs.

See Also


FillText(string, DrFont, float, float, Brush)

Adds a text string by filling interrior of glyphs.

public void FillText(string text, DrFont drFont, float x, float y, Brush fill)
ParameterTypeDescription
textStringThe text to add.
drFontDrFontDrFont that will be used to draw text. It can be used with custom font that is located in custom folder.
xSingleX coordinate for text origin.
ySingleY coordinate for text origin.
fillBrushThe fill used for painting glyphs.

See Also


FillText(string, float[], DrFont, float, float, Brush)

Adds a text string by filling interrior of glyphs.

public void FillText(string text, float[] advances, DrFont drFont, float x, float y, Brush fill)
ParameterTypeDescription
textStringThe text to add.
advancesSingle[]An array of glyphs width. It’s length must comply with the number of glyphs in the string.
drFontDrFontDrFont that will be used to draw text. It can be used with custom font that is located in custom folder.
xSingleX coordinate for text origin.
ySingleY coordinate for text origin.
fillBrushThe fill used for painting glyphs.

See Also