←Select platform

DicomTestConformanceFlags Enumeration

Summary
Indicates errors associated with the DicomElement.
Syntax
C#
C++/CLI
Java
[FlagsAttribute()] 
public enum DicomTestConformanceFlags   
public class DicomTestConformanceFlags  
[FlagsAttribute()] 
public enum class DicomTestConformanceFlags   
Members
ValueMemberDescription
0x00000000None No error.
0x00000001UnknownClass Error- improper class code.
0x00000002UnknownTag Error - improper tag value.
0x00000004UnknownVr Error - unknown Value Representation code.
0x00000008WrongVr Error - wrong Value Representation code.
0x00000010MinValMultiplicity Error - improper minimum value multiplicity value.
0x00000020MaxValMultiplicity Error - improper maximum value multiplicity value.
0x00000040DivideValMultiplicity Error - improper value multiplicity divisor.
0x00000080Image Error - improper image.
0x00000100Element Error - invalid element.
0x00000200ElementExists Error - element already exists.
0x00000400Memory Error - out of memory.
Remarks

For Android/Java users: The constant members of this class are defined using all capital letters with underscores between words.

Example
C#
using Leadtools; 
using Leadtools.Dicom; 
 
 
public bool DicomTestConformanceCallback(DicomElement element, DicomTestConformanceFlags flags) 
{ 
   string s = string.Format("Element: {0}", element.Tag.ToString()); 
   if (flags == DicomTestConformanceFlags.None) 
      Console.WriteLine(s + " no error."); 
   else 
      Console.WriteLine(s + " error: " + flags.ToString()); 
   return true; 
} 
 
public void TestConformanceSample() 
{ 
   string dicomFileName = Path.Combine(LEAD_VARS.ImagesDir, "DICOM", "image3.dcm"); 
   //Make sure to initialize the DICOM engine, this needs to be done only once  
   //In the whole application 
   DicomEngine.Startup(); 
   using (DicomDataSet ds = new DicomDataSet()) 
   { 
      //Load DICOM File 
      ds.Load(dicomFileName, DicomDataSetLoadFlags.None); 
 
      //Test it 
      ds.TestConformance(DicomTestConformanceCallback); 
   } 
   DicomEngine.Shutdown(); 
} 
 
static class LEAD_VARS 
{ 
   public const string ImagesDir = @"C:\LEADTOOLS23\Resources\Images"; 
} 
Requirements

Target Platforms

See Also

Reference

Leadtools.Dicom Namespace

Help Version 23.0.2024.2.29
Products | Support | Contact Us | Intellectual Property Notices
© 1991-2024 LEAD Technologies, Inc. All Rights Reserved.

Leadtools.Dicom Assembly

Products | Support | Contact Us | Intellectual Property Notices
© 1991-2023 LEAD Technologies, Inc. All Rights Reserved.