LEADTOOLS (Leadtools assembly) Send comments on this topic. | Back to Introduction - All Topics | Help Version 17.0.3.29
MemoryFlags Property
See Also 
Leadtools Namespace > RasterImageAllocateData Class : MemoryFlags Property



Gets or sets the memory model flags being used to create the RasterImage object.

Syntax

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

Property Value

One or more RasterMemoryFlags enumeration members that represent the memory model to use when creating the RasterImage object.

Example

Remarks

You can inspect and change the memory model (conventional, disk, tiled, etc.) used when creating the RasterImage object by using this property. Refer to the example of the RasterDefaults.SetRasterImageAllocateCallback method.

Requirements

Target Platforms: Silverlight, Windows XP, Windows Server 2003 family, Windows Server 2008 family, Windows Vista, Windows 7, MAC OS/X (Intel Only), Windows Phone 7

See Also