セルのスタイルによるイメージはCellStyle.ImageプロパティおよびCellStyle.ImageAlignプロパティで設定します。セル型がスタイルによるイメージをサポートしているかどうかは、各セル型の「スタイル」を参照してください。
イメージ
イメージはCellStyle.Imageプロパティで設定します。
GcMultiRow1.Rows(0).Cells(0).Style.Image = New Bitmap("test.png")
gcMultiRow1.Rows[0].Cells[0].Style.Image = new Bitmap(@"test.png");
イメージの配置
イメージの配置はCellStyle.ImageAlignプロパティで設定します。
Imports GrapeCity.Win.MultiRow
GcMultiRow1.Rows(0).Cells(0).Style.ImageAlign = MultiRowContentAlignment.BottomCenter
using GrapeCity.Win.MultiRow;
gcMultiRow1.Rows[0].Cells[0].Style.ImageAlign = MultiRowContentAlignment.BottomCenter;