Gets the CSV load and save options.
public CodecsCsvOptions Csv { get; } public:property CodecsCsvOptions^ Csv{CodecsCsvOptions^ get()}
Csv # get  (CodecsOptions) 
The CSV load and save options.
using Leadtools;using Leadtools.Codecs;using Leadtools.ImageProcessing.Core;public void CodecsCsvOptions_Example(){string csvFileName = Path.Combine(LEAD_VARS.ImagesDir, "sample.csv");string pngFileName = Path.Combine(LEAD_VARS.ImagesDir, "sample-csv.png");using (RasterCodecs codecs = new RasterCodecs()){// Change some CSV optionsCodecsCsvLoadOptions csvOptions = codecs.Options.Csv.Load; // CodecsCsvOptions referencecsvOptions.HeaderFontItalic = true;csvOptions.BodyFontName = "Arial";csvOptions.TableBorderColor = RasterColor.FromKnownColor(RasterKnownColor.Red);// Load the first page from a CSV fileusing (RasterImage image = codecs.Load(csvFileName, 1)){// Save it as PNGcodecs.Save(image, pngFileName, RasterImageFormat.Png, 0);}}}static class LEAD_VARS{public const string ImagesDir = @"C:\LEADTOOLS22\Resources\Images";}
Help Collections
Raster .NET | C API | C++ Class Library | HTML5 JavaScript
Document .NET | C API | C++ Class Library | HTML5 JavaScript
Medical .NET | C API | C++ Class Library | HTML5 JavaScript
Medical Web Viewer .NET
Multimedia
Direct Show .NET | C API | Filters
Media Foundation .NET | C API | Transforms
Supported Platforms
.NET, Java, Android, and iOS/macOS Assemblies
Imaging, Medical, and Document
C API/C++ Class Libraries
Imaging, Medical, and Document
HTML5 JavaScript Libraries
Imaging, Medical, and Document
