In This Topic
Format the path using rules for each part
Syntax
'Declaration
Public Function Format( _
ByVal As System.String, _
ByVal As System.String, _
ByVal As System.String _
) As System.String
'Usage
Dim instance As SequencePath
Dim Basic As System.String
Dim Parents As System.String
Dim Bottom As System.String
Dim value As System.String
value = instance.Format(Basic, Parents, Bottom)
public System.string Format(
System.string ,
System.string ,
System.string
)
public function Format(
: System.String;
: System.String;
: System.String
): System.String;
public function Format(
: System.String,
: System.String,
: System.String
) : System.String;
public: System.string* Format(
System.string* ,
System.string* ,
System.string*
)
public:
System.String^ Format(
System.String^ ,
System.String^ ,
System.String^
)
Parameters
- Basic
- This is standard format string, to format the PatientID, StudyUID, SeriesUID and InstanceUID properties of the dataset.
- Parents
-
This is standard format string, used repeatedly, on each sequence item between the top level
and the target attribute, the values being the tag of the sequence, and the ordinal of the dataet
within it.
- Bottom
-
This is standard format string, used only for the target attribute, the value
being the tag of that atribute.
Requirements
Target Platforms: .NET CLR 4.8 or higher
See Also