ImageGear .NET v25.2 - Updated
ImageGear.Formats.Vector Assembly / ImageGear.Formats.CAD Namespace / CADEntity Class / Color Property




In This Topic
    Color Property (CADEntity)
    In This Topic
    The RGB color of the CADEntity. Each component is on the range [0, 255]
    Syntax
    'Declaration
     
    Public Property Color As Byte()
    'Usage
     
    Dim instance As CADEntity
    Dim value() As Byte
     
    instance.Color = value
     
    value = instance.Color
    public byte[] Color {get; set;}
    public: __property byte[]* get_Color();
    public: __property void set_Color( 
       byte[][]* value
    );
    public:
    property array<byte>^ Color {
       array<byte>^ get();
       void set (    array<byte>^ value);
    }
    See Also