DicomObjects.NET.8.48 Documentation
DicomObjects Namespace / DicomImage Class / ColourTable Property






In This Topic
    ColourTable Property
    In This Topic
    The colour lookup table of DicomImage
    Syntax
    'Declaration
     
    
    Public Property ColourTable As System.Collections.Generic.IList(Of Color)
    'Usage
     
    
    Dim instance As DicomImage
    Dim value As System.Collections.Generic.IList(Of Color)
     
    instance.ColourTable = value
     
    value = instance.ColourTable
    public System.Collections.Generic.IList<Color> ColourTable {get; set;}
    public read-write property ColourTable: System.Collections.Generic.IList; 
    public function get,set ColourTable : System.Collections.Generic.IList
    public: __property System.Collections.Generic.IList<Color>* get_ColourTable();
    public: __property void set_ColourTable( 
       System.Collections.Generic.IList<Color>* value
    );
    public:
    property System.Collections.Generic.IList<Color>^ ColourTable {
       System.Collections.Generic.IList<Color>^ get();
       void set (    System.Collections.Generic.IList<Color>^ value);
    }

    Property Value

    List of System.Drawing.Color values
    Remarks
    This property enables developers to define and apply their own color table to Images.
    Requirements

    Target Platforms: .NET CLR 4.8 or higher

    See Also