|
HTMLTextOut Example |
Top |
|
[VB] With gtPDFEngineX1 .BeginDoc .Font.Name = "Arial" .Font.Size = 15 .HTMLTextOut 1, 1, "<B>Hello</B> <I>Welcome</I> to <U>Gnostice Information Technologies</U>" .EndDoc End With
[C#] axgtPDFEngineX1.BeginDoc(); axgtPDFEngineX1.Font = new Font("Arial",15); axgtPDFEngineX1.HTMLTextOut(1,1,"<B>Hello</B> <I>Welcome</I> to <U>Gnostice Information Technologies</U>"); axgtPDFEngineX1.EndDoc() ;
|