DicomObjects.NET10 Documentation
DicomObjects Namespace / DicomGlobal Class / SkipMalformedTags Method
The Group to ignore
The Element to ignore



In This Topic
    SkipMalformedTags Method
    In This Topic
    Instruct DicomObjects to skip particular tags. Similar to IgnoreAttribute which skips fully formed attributes including the VR and the value length to try to skip to next attribute, this method would skip only the Group and Element bytes skipping VR and value length.
    Syntax
    'Declaration
     
    
    Public Shared Sub SkipMalformedTags( _
       ByVal Group As Integer, _
       ByVal Element As Integer _
    ) 
    'Usage
     
    
    Dim Group As Integer
    Dim Element As Integer
     
    DicomGlobal.SkipMalformedTags(Group, Element)
    public static void SkipMalformedTags( 
       int Group,
       int Element
    )
    public:
    static void SkipMalformedTags( 
       int Group,
       int Element
    ) 

    Parameters

    Group
    The Group to ignore
    Element
    The Element to ignore
    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