←Select platform

DicomCopyFlags Enumeration

Summary
Flags that give additional information associated with the DicomElement.
Syntax
C#
C++/CLI
Java
[FlagsAttribute()] 
public enum DicomCopyFlags   
public class DicomCopyFlags 
[FlagsAttribute()] 
public enum class DicomCopyFlags   
Members
ValueMemberDescription
0x00000000None No additional information.
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:\LEADTOOLS22\Resources\Images"; 
} 
Requirements

Target Platforms

See Also

Reference

Leadtools.Dicom Namespace

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

Leadtools.Dicom Assembly

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