Product Bundles
DevCraft
All Telerik .NET tools and Kendo UI JavaScript components in one package. Now enhanced with:
Web
Mobile
Document Management
Desktop
Reporting
Testing & Mocking
CMS
UI/UX Tools
Debugging
Free Tools
Support and Learning
Productivity and Design Tools
Protected
Sub
RadGrid1_PdfExporting(
ByVal
sender
As
Object
,
e
Telerik.Web.UI.GridPdfExportingArgs)
Handles
RadGrid1.PdfExporting
Dim
FILE_NAME
String
=
"c:\file.txt"
If
System.IO.File.Exists(FILE_NAME) =
True
Then
objWriter
New
System.IO.StreamWriter(FILE_NAME)
objWriter.Write(e.RawHTML)
objWriter.Close()
End