Fill Data Member Function

Fills the array with the specified value.

Prototype

int32 Fill( int32 p_oColor )

Parameters

Parameter Type Parameter Name Documentation
int32p_oColorA pointer to the <Color> object whose value will fill the array.

Examples

Copy Text To Clipboard

import library "app_service_console_util.ssl";
import library "type_color_util.ssl";

auto Color a;
a.Fill( 255 );

Console.Out( LibColor.Out( a ) );

Results

255, 255, 255, 255