DicomObjects.NET.8.48 Documentation
DicomObjects Namespace / DicomGlobal Class / RemoveFromSOPClassGroup Method
The group to remove the SOP class from
The SOP class to remove
Example

In This Topic
    RemoveFromSOPClassGroup Method
    In This Topic
    Remove a SOP class from a group used to help control use of associated transfer syntaxes
    Syntax
    'Declaration
     
    
    Public Shared Sub RemoveFromSOPClassGroup( _
       ByVal Group As SOPClassGroups, _
       ByVal SOPClass As UID _
    ) 
    public static void RemoveFromSOPClassGroup( 
       SOPClassGroups Group,
       UID SOPClass
    )

    Parameters

    Group
    The group to remove the SOP class from
    SOPClass
    The SOP class to remove
    Remarks

    The groups are pre-populated at initialization, but may be modified by the user

    For direct access to the underlying Listof Strings to allow advanced usage see SOPClassGroup

    See Also:

    Example
    SOPClassGroups group = SOPClassGroups.Images8Bit;
    UID sopClass = SOPClasses.EnhancedMRColorImage;
    DicomGlobal.RemoveFromSOPClassGroup(group, sopClass);
    sopClasses = DicomGlobal.SOPClassGroup(group); // "EnhancedMRColorImage has been removed from SOPClassGroup
    Requirements

    Target Platforms: .NET CLR 4.8 or higher

    See Also