←Select platform

MessageNumber Property

Summary
Gets or sets the message number to be loaded from the PST file.
Syntax
C#
C++/CLI
Java
Python
public int MessageNumber {get; set;} 
public int getMessageNumber() 
public void setMessageNumber(int messageNumber) 
public: 
property int MessageNumber { 
   int get(); 
   void set (    int ); 
} 
MessageNumber # get and set (CodecsPstLoadOptions) 

Property Value

The message number to be loaded from the PST file. The default value is 1.

Example
C#
Java
using Leadtools; 
using Leadtools.Codecs; 
 
using Leadtools.ImageProcessing.Core; 
using Leadtools.Pdf; 
 
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 
         // CodecsPstOptions & CodecsPstLoadOptions reference 
         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:\LEADTOOLS23\Resources\Images"; 
} 
 
import java.io.File; 
import java.io.IOException; 
import java.net.URI; 
import java.net.URISyntaxException; 
import java.nio.file.Paths; 
 
import org.junit.*; 
import org.junit.runner.JUnitCore; 
import org.junit.runner.Result; 
import org.junit.runner.notification.Failure; 
import static org.junit.Assert.*; 
 
import leadtools.*; 
import leadtools.codecs.*; 
import leadtools.imageprocessing.core.MinMaxBitsCommand; 
 
 
public void codecsPstOptionsExample(){ 
 
   final String LEAD_VARS_IMAGES_DIR ="C:\\LEADTOOLS23\\Resources\\Images"; 
   RasterCodecs codecs = new RasterCodecs(); 
   String srcFileName = combine(LEAD_VARS_IMAGES_DIR, "TestMessages.pst"); 
   String outputFileName = combine(LEAD_VARS_IMAGES_DIR, "Result.jpg"); 
 
   int messageCount = 0; 
 
   // Get number of messages in the PST files 
   CodecsImageInfo imageInfo = codecs.getInformation(srcFileName, true); 
 
   messageCount = imageInfo.getPst().getMessageCount(); 
   imageInfo = null; 
 
   // Load all messages as pure text 
   for (int messageNumber = 1; messageNumber <= messageCount; messageNumber++) { 
      // Load message number 10 as text only 
      // CodecsPstOptions & CodecsPstLoadOptions reference 
      codecs.getOptions().getPst().getLoad().setMessageNumber(messageNumber); 
      codecs.getOptions().getPst().getLoad().setPlainText(true); 
 
      // Load the image 
      RasterImage image = codecs.load(srcFileName); 
 
      // do something with the image here 
 
      codecs.save(image, outputFileName, RasterImageFormat.JPEG, 0); 
 
      assertTrue("File saved to " + outputFileName, (new File(outputFileName)).exists()); 
      System.out.printf("File successfully saved to %s%n", outputFileName); 
 
      image.dispose();; 
   } 
   codecs.dispose();; 
} 
Requirements

Target Platforms

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

Leadtools.Codecs Assembly

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