DicomObjects.NET Core Documentation
DicomObjects.Enums Namespace / DrawCacheMode Enumeration



In This Topic
    DrawCacheMode Enumeration
    In This Topic
    Controls how images are drawn internally
    Syntax
    'Declaration
     
    
    Public Enum DrawCacheMode 
       Inherits System.Enum
    'Usage
     
    
    Dim instance As DrawCacheMode
    public enum DrawCacheMode : System.Enum 
    public enum class DrawCacheMode : public System.Enum 
    Members
    MemberDescription
    AfterLabelsRendered copy has labelled added and is then cached. If this mode is used, then the cache is cleared when labels change. This mode is incompatible with DisplayMode.Monochrome as .NET des not permit use of a monochrome bitmap as a Graphics object. The mode will silently revert to BeforeLabels if DisplayMode is monochrome, or if it is Auto on a monochrome image.
    BeforeLabels Rendered copy is cached, and then drawn to the screen. Labels are drawn separately to the screen.
    Inheritance Hierarchy

    System.Object
       System.ValueType
          System.Enum
             DicomObjects.Enums.DrawCacheMode

    Requirements

    Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

    See Also