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






In This Topic
    ColourConverter Property
    In This Topic
    Interface to allow override of the default CIELab <=> RGB conversion
    Syntax
    'Declaration
     
    
    Public Shared Property ColourConverter As IColourConverter
    'Usage
     
    
    Dim value As IColourConverter
     
    DicomGlobal.ColourConverter = value
     
    value = DicomGlobal.ColourConverter
    public static IColourConverter ColourConverter {get; set;}
    public read-write property ColourConverter: IColourConverter; static; 
    public static function get,set ColourConverter : IColourConverter
    public: __property static IColourConverter* get_ColourConverter();
    public: __property static void set_ColourConverter( 
       IColourConverter* value
    );
    public:
    static property IColourConverter^ ColourConverter {
       IColourConverter^ get();
       void set (    IColourConverter^ value);
    }
    Remarks
    A default implementation is provided, but an application which implements an object with the IColourConverter interface can then assign it to this property which allows appropriate calibration where required.
    Requirements

    Target Platforms: .NET CLR 4.8 or higher

    See Also