| Visual Basic (Declaration) | |
|---|---|
Public Enum ElementDataType Inherits System.Enum Implements IComparable, IConvertible, IFormattable | |
| Visual Basic (Usage) | Copy Code |
|---|---|
Dim instance As ElementDataType | |
| C# | |
|---|---|
public enum ElementDataType : System.Enum, IComparable, IConvertible, IFormattable | |
| C++/CLI | |
|---|---|
public enum class ElementDataType : public System.Enum, IComparable, IConvertible, IFormattable | |
| Member | Description |
|---|---|
| Base64 | Input xml file element has Base64 encoded value |
| BinHex | Input xml file element has BinHex encoded value |
| None | Input xml file element has unknown value |
| String | Input xml file element has a string value |
For an example, refer to SaveXmlCallback.
When calling DicomExtensions.LoadXml and passing a LoadXmlBeforeElementCallback delegate, the LoadXmlBeforeElementCallback is called for each element in the xml input file, and a LoadXmlBeforeElementData member is returned as part of the delegate. The ElementDataType enum is used in the LoadXmlBeforeElementData.Encoding member of LoadXmlBeforeElementData.
System.Object
System.ValueType
System.Enum
Leadtools.Dicom.Common.Extensions.ElementDataType
Target Platforms: Microsoft .NET Framework 2.0, Windows 2000, Windows XP, Windows Server 2003 family, Windows Server 2008 family, Windows Vista, Windows 7
Copy Code