DicomObjects.NET.8.48 Documentation
DicomObjects Namespace / DicomGlobal Class / DirectionStrings Property






In This Topic
    DirectionStrings Property
    In This Topic
    Language specific indicators for anatomic labelling
    Syntax
    'Declaration
     
    
    Public Shared Property DirectionStrings As System.String()
    'Usage
     
    
    Dim value() As System.String
     
    DicomGlobal.DirectionStrings = value
     
    value = DicomGlobal.DirectionStrings
    public static System.string[] DirectionStrings {get; set;}
    public read-write property DirectionStrings: System.array of String; static; 
    public static function get,set DirectionStrings : System.String[]
    public: __property static System.string*[]* get_DirectionStrings();
    public: __property static void set_DirectionStrings( 
       System.string*[][]* value
    );
    public:
    static property System.array<String^>^ DirectionStrings {
       System.array<String^>^ get();
       void set (    System.array<String^>^ value);
    }
    Remarks

    This property supplies the strings used by all DicomLabels of type LabelType Special. The default value is{"R","L","A","P","I","S"} corresponding to the English abbreviations for RIGHT, LEFT, ANTERIOR, POSTERIOR, INFERIOR and SUPERIOR respectively. If you wish to to change this value, please note the following:

    • Exactly 6 values are required (otherwise you will get error message), in the order indicated above.
    • Unicode is fully supported allowing Chinese or other non-western direction indicators.
    Requirements

    Target Platforms: .NET CLR 4.8 or higher

    See Also