The <ColorArray> constructor.
ColorArray ColorArray( int32 p_nCount, Color p_oColor )
| Parameter Type | Parameter Name | Documentation |
|---|---|---|
| int32 | p_nCount | The desired array count. |
| <Color> | p_oColor | A pointer to a <Color> object used to set the initial value of all the items in the <ColorArray>. |
import library "app_service_console_util.ssl";
import library "type_color_array_util.ssl";
auto Color src = new Color( 0, 32, 128, 255 );
Console.Out( src.X + ", " + src.Y + ", " + src.Z + ", " + src.W );
0, 32, 128, 255