Replaces the text on the page with glyph outlines.

 

   

Syntax
 

[C#]
void VectorizeText()
[Visual Basic]
Sub VectorizeText()

Throws Exceptions may throw Exception()

 

   

Params
 
Name Description
none  

 

   

Notes
 

Use this method to vectorize the text (i.e. replace the text with equivalent glyph polygon outlines).

 

   

Example
 

 

using (Doc doc = new Doc()) {   doc.FontSize = 96;   doc.AddText("Hello World");   foreach (Page page in doc.ObjectSoup.Catalog.Pages.GetPageArrayAll())     page.VectorizeText();   doc.Save(Server.MapPath("VectorizedText.pdf")); }