DicomObjects.NET8 Documentation
DicomObjects Namespace / ReadBehaviours Class / IgnoredAttributes Property



In This Topic
    IgnoredAttributes Property (ReadBehaviours)
    In This Topic
    A list of DICOM tags to ignore. The DICOM group and element number shall be provided in in ggggeeee format such as 0x7FE00010 if pixel data shall be ignored during reading.
    Syntax
    'Declaration
     
    
    Public Property IgnoredAttributes As List(Of ULong)
    'Usage
     
    
    Dim instance As ReadBehaviours
    Dim value As List(Of ULong)
     
    instance.IgnoredAttributes = value
     
    value = instance.IgnoredAttributes
    public List<ulong> IgnoredAttributes {get; set;}
    public:
    property List<ulong>^ IgnoredAttributes {
       List<ulong>^ get();
       void set (    List<ulong>^ value);
    }
    Remarks
    This works the same as but only affect individual read operations
    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