ColorToString

色の値を「R、G、B」形式の文字列に変換します。

string  ColorToString(
   color  color_value,     // color value
   bool   color_name       // show color name or not
   );

パラメーター

color_value

[in]カラータイプ変数のカラー値。

color_name

[in]定義済みの色定数のいずれかと同じ色名を返します。

戻り値

「R、G、B」としての色の文字列表示。R、G、Bは、文字列に変換された0〜255の10進定数です。color_name = trueパラメーターが設定されている場合、色の値を色の名前に変換しようとします。

例:

   string clr=ColorToString(C’0,255,0‘); // green color
   Print(clr);
 
   clr=ColorToString(C’0,255,0‘,true);   // get color constant
   Print(clr);

 

Leave a Reply

Your email address will not be published. Required fields are marked *

CAPTCHA


You may use these HTML tags and attributes: <a href="" title=""> <abbr title=""> <acronym title=""> <b> <blockquote cite=""> <cite> <code class="" title="" data-url=""> <del datetime=""> <em> <i> <q cite=""> <s> <strike> <strong> <pre class="" title="" data-url=""> <span class="" title="" data-url="">