| Visual Basic (Declaration) | |
|---|---|
Public Enum DicomInsertElementAndSetValueResult Inherits Enum | |
| Visual Basic (Usage) | Copy Code |
|---|---|
| |
| C# | |
|---|---|
public enum DicomInsertElementAndSetValueResult : Enum | |
| C++/CLI | |
|---|---|
public enum class DicomInsertElementAndSetValueResult : public Enum | |
| Member | Description |
|---|---|
| Success | Element successfully added and value successfully assigned |
| ElementAddedValueSet | Element successfully added and value successfully assigned |
| ElementExistedValueSet | Element not added because it already existed, and value of existing element successfully assigned |
| ElementAddedValueNotSet | Element successfully added but value not assigned |
| ElementExistedValueNotSet | Element not added because it already existed, and value not assigned |
| ElementNotAdded | Element not added |
After calling DicomDataSet.InsertElementAndSetValue(Int64,Object),
the property DicomDataSet.InsertElementAndSetValueResult
will contain one of the enumeration values that indicate the result.
System.Object
System.ValueType
System.Enum
Leadtools.Dicom.DicomInsertElementAndSetValueResult
Target Platforms: Microsoft .NET Framework 3.0, Windows XP, Windows Server 2003 family, Windows Server 2008 family
Copy Code