.. highlightlang:: us .. _xyzset3dinsidecolor: XYZSet3DInsideColor =================== .. index:: XYZSet3DInsideColor .. us.tag XYZSet3DInsideColor ENGLISH XYZSet_3d :ref:`XYZSet3DInsideColor` sets the color of the 3D surface map inside the data hull. .. function:: bool = XYZSet3DInsideColor(hData, rvRGB) .. us.return **Return Value** If the function succeeds, the return value *bool* is TRUE (1); otherwise it is FALSE (0). .. us.params **Parameters** .. uparam:: hData The handle of a dataset created with :ref:`XYZCreate`. .. uparam:: rvRGB *rvRGB* is a vector with 3 elements: .. list-table:: :header-rows: 1 * - Value - Meaning * - rvRGB[1] - Red (0 to 255) * - rvRGB[2] - Green (0 to 255) * - rvRGB[3] - Blue (0 to 255) .. us.example **Example** :: XYZSet3DSurfaceType(hData, STYLE_SURF_SOLIDCOLOR); XYZSet3DInsideColor(hData, [255,0,0]); // Rot XYZSet3DOutsideColor(hData, [200,200,200]); // Grau .. seealso:: :ref:`overview-xyz-datasets`, :ref:`XYZGet3DInsideColor`, :ref:`XYZSet3DOutsideColor`, :ref:`XYZSet3DSurfaceType`, :ref:`XYZCreate` :sub:`id-1729052`