DicomObjects.NET Core Documentation
DicomObjects Namespace / DicomGlobal Class / IgnoreAttribute Method
The Group to ignore
The Element to ignore



In This Topic
    IgnoreAttribute Method
    In This Topic
    Instruct DicomObjects to ignore particular attributes
    Syntax
    'Declaration
     
    
    Public Shared Sub IgnoreAttribute( _
       ByVal Group As Integer, _
       ByVal Element As Integer _
    ) 
    'Usage
     
    
    Dim Group As Integer
    Dim Element As Integer
     
    DicomGlobal.IgnoreAttribute(Group, Element)
    public static void IgnoreAttribute( 
       int Group,
       int Element
    )
    public:
    static void IgnoreAttribute( 
       int Group,
       int Element
    ) 

    Parameters

    Group
    The Group to ignore
    Element
    The Element to ignore
    Remarks
    This is a very specialist feature, intended only to be used when receiving or reading data from systems so bad that the data cannot be fixed after reading. It is most commonly used when receiving badly formatted sequences, but in that context can only be used when they use explicit length for the sequence as a whole, as it would otherwise not be possible to determine the location of the end of the sequence.
    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