[サンプルコード]
SetImageメソッドの引数には、以下の3種類が指定可能です。
1.Imageオブジェクト
2.ImageListオブジェクト
3.画像ファイルのURL
/* Image、ImageListオブジェクトの定義 */
Image Image1 {
/*イメージのロード */
LoadImage("image01.jpg");
}
ImageList ImageList1{
/*イメージのロード */
LoadImage("image01.jpg");
LoadImage("image02.jpg");
}
/* 1.Imageオブジェクトから画像を読み込む */
ImageButton ImageButton1 {
X = 0;
Y = 0;
Height = 30;
Width = 100;
SetImage(^.image1);
}
/* 2.ImageListオブジェクトから、画像を指定しないで読み込む */
ImageButton ImageButton2{
X = 0;
Y = 100;
Height = 30;
Width = 100;
SetImage(^.imageList1);
}
/* 2.ImageListオブジェクトから、画像を指定して読み込む */
ImageButton ImageButton3 {
X = 200;
Y = 0;
Height = 30;
Width = 100;
SetImage(^.imageList1.GetImage(1));
}
/* 3.URLを設定して画像を読み込む */
ImageButton ImageButton4 {
X = 300;
Y = 0;
Height = 30;
Width = 100;
}
if ( !$DESIGNTIME ) {
ImageButton4.SetImage("../image/image03.jpg");
}
CRSファイル形式のサンプルを
「ボタンにイメージを設定するサンプル(ImgBt_003.zip)」
よりご利用いただけます。
|