- element
- A DicomElement in the data set.
- fileDocument
- The name of the file that will be encapsulated.
- encapsulatedDocument
- The encapsulated document module attributes
- conceptNameCodeSequence
- The concept name code sequence attributes
Visual Basic (Declaration) | |
---|---|
Public Sub SetEncapsulatedDocument( _ 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 SetEncapsulatedDocument( DicomElement element, bool child, string fileDocument, DicomEncapsulatedDocument encapsulatedDocument, DicomCodeSequenceItem conceptNameCodeSequence ) |
C++/CLI | |
---|---|
public: void SetEncapsulatedDocument( DicomElement^ element, bool child, String^ fileDocument, DicomEncapsulatedDocument^ encapsulatedDocument, DicomCodeSequenceItem^ conceptNameCodeSequence ) |
Parameters
- element
- A DicomElement in the data set.
- child
- true to insert the encapsulated document as a child of element., false to insert the encapsulated document on the same level as element.
- fileDocument
- The name of the file that will be encapsulated.
- 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 set the Concept Name Code Sequence element (0040,A043) pass a conceptNameCodeSequence object.
fileDocument is a file location of the document that will be encapsulated. This should be either a PDF or a CDA document, and the member of the DicomEncapsulatedDocument class should be set accordingly.
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