←Select platform

CodecsPstOptions Class

Summary
Provides extra options for loading Outlook PST, MSG and EML files.
Syntax
C#
VB
C++
Java
public class CodecsPstOptions 
Public Class CodecsPstOptions  
public class CodecsPstOptions 
public ref class CodecsPstOptions  
Example
C#
using Leadtools; 
using Leadtools.Codecs; 
 
 
public void CodecsPstOptionsExample() 
{ 
	using (RasterCodecs codecs = new RasterCodecs()) 
	{ 
		string srcFileName = Path.Combine(LEAD_VARS.ImagesDir, "file.pst"); 
 
		int messageCount = 0; 
 
		// Get number of messages in the PST files 
		using (CodecsImageInfo imageInfo = codecs.GetInformation(srcFileName, true)) 
		{ 
			messageCount = imageInfo.Pst.MessageCount; 
		} 
 
		// Load all messages as pure text 
		for (int messageNumber = 1; messageNumber <= messageCount; messageNumber++) 
		{ 
			// Load message number 10 as text only 
			codecs.Options.Pst.Load.MessageNumber = messageNumber; 
			codecs.Options.Pst.Load.PlainText = true; 
 
			// Load the image 
			using (RasterImage image = codecs.Load(srcFileName)) 
			{ 
				// do something with the image here 
			} 
		} 
	} 
} 
 
static class LEAD_VARS 
{ 
   public const string ImagesDir = @"C:\LEADTOOLS21\Resources\Images"; 
} 
Requirements

Target Platforms

Help Version 21.0.2021.7.2
Products | Support | Contact Us | Intellectual Property Notices
© 1991-2021 LEAD Technologies, Inc. All Rights Reserved.

Leadtools.Codecs Assembly

Products | Support | Contact Us | Intellectual Property Notices
© 1991-2021 LEAD Technologies, Inc. All Rights Reserved.