DicomObjects.NET.V8
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 IList(Of Color)
    'Usage
     
    Dim instance As DicomImage
    Dim value As IList(Of Color)
     
    instance.ColourTable = value
     
    value = instance.ColourTable
    public IList<Color> ColourTable {get; set;}
    public:
    property IList<Color>^ ColourTable {
       IList<Color>^ get();
       void set (    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.0 or higher

    See Also