BMP画像表示[Auth_ShowBMPIMG]

Auth_ShowBMPIMG

画像を表示します。

関数書式

				
					void Auth_ShowBMPIMG(
   string imgpath,
   string imgname,
   ENUM_BASE_CORNER corner = 0,
   int xdistance = 20,
   int ydistance = 20
);				
			

パラメータ

imgpath
   [in] 画像ファイルの場所
imgname
   [in] 画像のオブジェクト名
corner
   [in] 画像を表示する位置
xdistance = 20
   [in] 画像のX軸の表示位置
xdistance = 20
   [in] 画像のY軸の表示位置

戻り値

なし

サンプル

				
					Auth_ShowBMPIMG("\\Include\\Images\\MQLAuthLogo.bmp", "MQLAuth_LOGO", CORNER_LEFT_LOWER);				
			
On this page