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

    Property Value

    List of SkiaSharp.SKColor values
    Remarks
    This property enables developers to define and apply their own color table to Images.
    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