DicomObjects.NET.V8
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 String()
    'Usage
     
    Dim value() As String
     
    DicomGlobal.DirectionStrings = value
     
    value = DicomGlobal.DirectionStrings
    public static string[] DirectionStrings {get; set;}
    public:
    static property array<String^>^ DirectionStrings {
       array<String^>^ get();
       void set (    array<String^>^ value);
    }
    Remarks

    This property supplies the strings used by all DicomLabels of type 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.0 or higher

    See Also