DicomObjects.NET Core 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 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 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: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

    See Also