'DeclarationPublic Function IsParallel() As System.Boolean
public System.bool IsParallel()
Return Value
True if all images are parallel, everything else is false
'DeclarationPublic Function IsParallel() As System.Boolean
public System.bool IsParallel()
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();