DicomObjects.NET.8.48 Documentation
DicomObjects Namespace / WriteBehaviours Class / DontCompressIcons Property






In This Topic
    DontCompressIcons Property
    In This Topic
    Controls whether to compress icon pixcel data if using an encapsulated (compressed) transfer syntax.
    Syntax
    'Declaration
     
    
    Public Property DontCompressIcons As System.Boolean
    'Usage
     
    
    Dim instance As WriteBehaviours
    Dim value As System.Boolean
     
    instance.DontCompressIcons = value
     
    value = instance.DontCompressIcons
    public System.bool DontCompressIcons {get; set;}
    public read-write property DontCompressIcons: System.Boolean; 
    public function get,set DontCompressIcons : System.boolean
    public: __property System.bool get_DontCompressIcons();
    public: __property void set_DontCompressIcons( 
       System.bool value
    );
    public:
    property System.bool DontCompressIcons {
       System.bool get();
       void set (    System.bool value);
    }
    Remarks

    DICOM allows icon images to be either compressed (with an implicit length) or uncompressed (with an explicit length), and this property allows develoeprs to choose which to use.

    The default value of this property is derived from the DontCompressIcons value of the internal registry, which in turn has a default value of 0, causing this property to be false, causing icons to be compressed as per the transfer syntax of the surrounding dataset

    Requirements

    Target Platforms: .NET CLR 4.8 or higher

    See Also