- element
- A DicomElement in the data set.
- fileDocument
- The name of the file that will contain the encapsualted document.
- encapsulatedDocument
- The encapsulated document module attributes
- conceptNameCodeSequence
- The concept name code sequence attributes
Visual Basic (Declaration) | |
---|---|
Public Sub GetEncapsulatedDocument( _ ByVal element As DicomElement, _ ByVal child As Boolean, _ ByVal fileDocument As String, _ ByVal encapsulatedDocument As DicomEncapsulatedDocument, _ ByVal conceptNameCodeSequence As DicomCodeSequenceItem _ ) |
Visual Basic (Usage) | Copy Code |
---|---|
|
C# | |
---|---|
public void GetEncapsulatedDocument( DicomElement element, bool child, string fileDocument, DicomEncapsulatedDocument encapsulatedDocument, DicomCodeSequenceItem conceptNameCodeSequence ) |
C++/CLI | |
---|---|
public: void GetEncapsulatedDocument( DicomElement^ element, bool child, String^ fileDocument, DicomEncapsulatedDocument^ encapsulatedDocument, DicomCodeSequenceItem^ conceptNameCodeSequence ) |
Parameters
- element
- A DicomElement in the data set.
- child
- true to retrieve the encapsulated document as a child of element., false to retrieve the encapsulated document on the same level as element.
- fileDocument
- The name of the file that will contain the encapsualted document.
- encapsulatedDocument
- The encapsulated document module attributes
- conceptNameCodeSequence
- The concept name code sequence attributes
Visual Basic | Copy Code |
---|---|
''' |
C# | Copy Code |
---|---|
/// |
This feature is available in version 16 or higher.
The members of the DicomEncapsulatedDocument class and the DicomCodeSequenceItem class together represent the set of attributes contained in the "Encapsulated Document Module Attributes”. The Encapsulated Information Object Definition (IOD) describes either a
PDF document CDA document
that has been encapsulated within a DICOM information object. For more information, refer to Part 3 of the DICOM standard.
The encapsulatedDocument class corresponds to the Encapsulated Document Module Attributes described in part 3 of the DICOM specification. To retrieve the Concept Name Code Sequence element (0040,A043) pass a conceptNameCodeSequence object.
fileDocument is a file location that will contain the encapsulated document after it is extracted. If this file already exists, it will be over written.
Target Platforms: Microsoft .NET Framework 3.0, Windows XP, Windows Server 2003 family, Windows Server 2008 family
Reference
DicomDataSet ClassDicomDataSet Members
GetEncapsulatedDocument Method
SetEncapsulatedDocument Method
DicomEncapsulatedDocument Class