DicomObjects.NET.8.48 Documentation
DicomObjects Namespace / DicomImageCollection Class / IsParallel Method
Example

In This Topic
    IsParallel Method
    In This Topic
    Check if images in the collection are parallel
    Syntax
    'Declaration
     
    
    Public Function IsParallel() As System.Boolean
    public System.bool IsParallel()

    Return Value

    True if all images are parallel, everything else is false
    Example
    DicomImageCollection imageCollection = new DicomImageCollection();
                        
    images.Add(new DicomImage("slice1.dcm"));
    images.Add(new DicomImage("slice2.dcm"));
    images.Add(new DicomImage("slice3.dcm"));
                        
    bool areSlicesParallel = images.IsParallel();
    Requirements

    Target Platforms: .NET CLR 4.8 or higher

    See Also