DicomObjects.NET.8.48 Documentation
DicomObjects Namespace / SequencePath Class / Format Method
This is standard format string, to format the PatientID, StudyUID, SeriesUID and InstanceUID properties of the dataset.
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.
This is standard format string, used only for the target attribute, the value being the tag of that atribute.






In This Topic
    Format Method
    In This Topic
    Format the path using rules for each part
    Syntax
    'Declaration
     
    
    Public Function Format( _
       ByVal Basic As System.String, _
       ByVal Parents As System.String, _
       ByVal Bottom 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 Basic,
       System.string Parents,
       System.string Bottom
    )
    public function Format( 
        Basic: System.String;
        Parents: System.String;
        Bottom: System.String
    ): System.String; 
    public function Format( 
       Basic : System.String,
       Parents : System.String,
       Bottom : System.String
    ) : System.String;
    public: System.string* Format( 
       System.string* Basic,
       System.string* Parents,
       System.string* Bottom
    ) 
    public:
    System.String^ Format( 
       System.String^ Basic,
       System.String^ Parents,
       System.String^ Bottom
    ) 

    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