StringToColor

「R、G、B」文字列または色名付き文字列を色タイプ値に変換します。

color  StringToColor(
   string  color_string      // string representation of color
   );

パラメーター

color_string

[in]「R、G、B」タイプの色の文字列表現または事前定義されたWeb-colorsのいずれかの名前。

戻り値

カラー値。

例:

   color str_color=StringToColor(“0,127,0”);
   Print(str_color);
   Print((string)str_color);
//— change color a little
   str_color=StringToColor(“0,128,0”);
   Print(str_color);
   Print((string)str_color);

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="">