DicomObjects.NET.8.48 Documentation
DicomObjects Namespace / ReadBehaviours Class / IgnoreAfterPixels Property






In This Topic
    IgnoreAfterPixels Property
    In This Topic
    Controls whether all data after the pixel data is to be ignored.
    Syntax
    'Declaration
     
    
    Public Property IgnoreAfterPixels As System.Boolean
    'Usage
     
    
    Dim instance As ReadBehaviours
    Dim value As System.Boolean
     
    instance.IgnoreAfterPixels = value
     
    value = instance.IgnoreAfterPixels
    public System.bool IgnoreAfterPixels {get; set;}
    public read-write property IgnoreAfterPixels: System.Boolean; 
    public function get,set IgnoreAfterPixels : System.boolean
    public: __property System.bool get_IgnoreAfterPixels();
    public: __property void set_IgnoreAfterPixels( 
       System.bool value
    );
    public:
    property System.bool IgnoreAfterPixels {
       System.bool get();
       void set (    System.bool value);
    }
    Remarks

    It may give the following advantages in some situations:

    • When there is rubbish at the end of the file
    • When reading very large compressed files, as it avoids the need to scan to the end of the pixel data.

    The default value of this property is derived from the IgnoreAfterPixels value of the internal registry, which in turn has a default value of 0, causing this property to be false.

    Requirements

    Target Platforms: .NET CLR 4.8 or higher

    See Also