Vcl.Graphics.ColorToString

提供: RAD Studio API Documentation
移動先: 案内検索

Delphi

function ColorToString(Color: TColor): string;

C++

extern DELPHI_PACKAGE System::UnicodeString __fastcall ColorToString(System::Uitypes::TColor Color);

プロパティ

種類 可視性 ソース ユニット
function public
Vcl.Graphics.pas
Vcl.Graphics.hpp
Vcl.Graphics Vcl.Graphics

説明

TColor 値の名前を表す文字列を返します。

ColorToString 関数を呼び出すと,TColor 値を表す文字列を取得できます。clBlack や clHighlightText など,色に定数シンボルが定義されている場合,ColorToString は定数の名前を返します。それ以外の場合,ColorToString は色の 16 進値を $02FF8800 (Delphi) または 0x02FF8800 (C++) のような形式で返します。

関連項目