LEADTOOLS Windows Forms (Leadtools.WinForms.CommonDialogs.File assembly) Send comments on this topic. | Back to Introduction - All Topics | Help Version 17.0.3.30
BitsPerPixel Property
See Also 
Leadtools.WinForms.CommonDialogs.File Namespace > RasterSaveDialog Class : BitsPerPixel Property



Gets a value that indicates which bits per pixel to use. For a listing of the bits per pixel supported by each format, refer to the RasterDialogFileTypesIndex enumeration.

Syntax

Visual Basic (Declaration) 
Public Property BitsPerPixel As Integer
Visual Basic (Usage)Copy Code
Dim instance As RasterSaveDialog
Dim value As Integer
 
instance.BitsPerPixel = value
 
value = instance.BitsPerPixel
C# 
public int BitsPerPixel {get; set;}
C++/CLI 
public:
property int BitsPerPixel {
   int get();
   void set (    int value);
}

Property Value

The bits per pixel.

Example

Refer to RasterSaveDialog example.

Remarks

This is the value that should be passed for the bitsPerPixel parameter when calling the Leadtools.Codecs.RasterCodecs.Save(Leadtools.RasterImage,System.Uri,Leadtools.RasterImageFormat,System.Int32,System.Int32,System.Int32) method.

Requirements

Target Platforms: Microsoft .NET Framework 2.0, Windows 2000, Windows XP, Windows Server 2003 family, Windows Server 2008 family, Windows Vista, Windows 7

See Also