Leadtools.CF Send comments on this topic. | Back to Introduction - All Topics | Help Version 17.0.6.15
RasterMemoryFlags Enumeration
See Also  
Leadtools Namespace : RasterMemoryFlags Enumeration



Indicates the type of memory to allocate

Syntax

Visual Basic (Declaration) 
<FlagsAttribute()>
Public Enum RasterMemoryFlags 
   Inherits Enum
   Implements IComparableIConvertibleIFormattable 
Visual Basic (Usage)Copy Code
Dim instance As RasterMemoryFlags
C# 
[FlagsAttribute()]
public enum RasterMemoryFlags : Enum, IComparableIConvertibleIFormattable  
C++/CLI 
[FlagsAttribute()]
public enum class RasterMemoryFlags : public Enum, IComparableIConvertibleIFormattable  

Members

MemberDescription
None No flags.
Conventional Use unmanaged (Windows) memory.
User Create a bitmap where the user maintains the data pointer.
Tiled Create a bitmap where the data pointers are maintained in tiles, useful for very large images.
NoTiled Do not allow tiled images.
Disk Do not use managed memory. Swap to disk only.
NoDisk Do not swap to disk using LEAD's virtual memory. Windows virtual memory is not affected.
Compressed(Advanced Features only) Allocate an RLE-compressed bitmap. You can use this flag with None or NoDisk. For more information, refer to Speeding Up 1-Bit Documents.
SuperCompressed(Advanced Features only) Keep 24-bit images compressed in memory. This option causes slow access, but very low memory usage.

Example

For an example, refer to RasterImage constructor.

Remarks

For more information, refer to RasterImage and Memory Storage Types for Images.

Inheritance Hierarchy

System.Object
   System.ValueType
      System.Enum
         Leadtools.RasterMemoryFlags

Requirements

Target Platforms: Microsoft .NET CF Framework 2.0, Windows Mobile 5 PocketPC, Windows Mobile 5 Smartphone, Windows Mobile 6

See Also