EnhancedMultiFramesMacros.Macro Constructor
In This Topic
Creates a new DICOM Macro
Syntax
'Declaration
Public Function New( _
ByVal As Keyword, _
ByVal As System.Boolean, _
ByVal As System.String, _
ByVal As System.Collections.Generic.List(Of EnhancedMultiFramesMacros.MacroElement) _
)
'Usage
Dim keyword As Keyword
Dim perFrame As System.Boolean
Dim modality As System.String
Dim l As System.Collections.Generic.List(Of EnhancedMultiFramesMacros.MacroElement)
Dim instance As New EnhancedMultiFramesMacros.Macro(keyword, perFrame, modality, l)
public EnhancedMultiFramesMacros.Macro(
Keyword ,
System.bool ,
System.string ,
System.Collections.Generic.List<EnhancedMultiFramesMacros.MacroElement>
)
public EnhancedMultiFramesMacros.Macro(
: Keyword;
: System.Boolean;
: System.String;
: System.Collections.Generic.List
);
public function EnhancedMultiFramesMacros.Macro(
: Keyword,
: System.boolean,
: System.String,
: System.Collections.Generic.List
);
public: EnhancedMultiFramesMacros.Macro(
Keyword ,
System.bool ,
System.string* ,
System.Collections.Generic.List<EnhancedMultiFramesMacros.MacroElement*>*
)
public:
EnhancedMultiFramesMacros.Macro(
Keyword ,
System.bool ,
System.String^ ,
System.Collections.Generic.List<EnhancedMultiFramesMacros.MacroElement^>^
)
Parameters
- keyword
- Keyword for the DICOM Macro
- perFrame
- Whether the Macro is only for Per-Frame Functional Group sequence
- modality
- Modality value for the Macro, set to null is the Macro is not Modality specific
- l
- The list of , each representing a DICOM Attribute within the Macro
Requirements
Target Platforms: .NET CLR 4.8 or higher
See Also