API Documentation > CorelDRAW > 2025-v26 > Color > IVGColor
Color.YIQAssign method
Assigns the YIQ color model
Syntax:
Sub YIQAssign(ByVal y As Long, ByVal I As Long, ByVal Q As Long)
Parameters:
Name Type Description
y
Long
I
Long
Q
Long
Remarks:
The YIQAssign method assigns the YIQ color model in CorelDRAW. All three color components are applied in one step, and the color model is set to YIQ. A color is an effect applied to an object that alters the object's appearance by the way it reflects light. A color model is a system that defines the number and type of colors that make up an image and that is used to organize and define colors according to a set of basic properties that can be reproduced. Black-and-white, grayscale, RGB, CMYK, and paletted are examples of popular color modes. The YIQ color model is a color model used in television broadcast systems (North American video standard, or NTSC). Colors are split into a luminance value (Y) and two chromaticity values (I and Q). On a color monitor, all three components are visible. On a monochrome monitor, only the Y component is visible. The square, two-dimensional visual selector defines the I and Q values, and the vertical visual selector defines the Y value. All values are scaled from 0 to 255.
Examples:
The following VBA example sets the fill of the object to YIQ purple.
Sub Test()
ActiveSelection.Shapes(1).Fill.UniformColor.YIQAssign 100, 255, 255 
End Sub