home *** CD-ROM | disk | FTP | other *** search
- Image( 0 ).Resample( 400,200 )
- Image( 0 ).Color = _ColorWhite
-
- Font.Ellipses = _FontEndEllipses
- Image(0).DrawText(50,20, 0,0, "You can specify '_FontEndEllipses' to replace characters at the end of the string" )
- Font.Ellipses = _FontPathEllipses
- Image(0).DrawText(50,40, 0,0, "You can specify '_FontPathEllipses' This is the File c:\\ABCDEF\\GHIJK\\LMN.OPQ" )
- Font.Ellipses = _FontEndEllipses
- Image(0).DrawText(50,70, 200,60, "Rectangle: _FontEndEllipses\nReplace characters at the end of the string" )
- Font.Ellipses = _FontPathEllipses
- Image(0).DrawText(50,110, 220,60, "Rectangle: _FontPathEllipses\nThis_is_the_File c:\\ABCDEF\\GHIJK\\LMN.OPQ" )
- Font.Ellipses = _FontNoEllipses
- Redraw()
-