パラメータ
- g
- コンテンツが描画される System.Drawing.Graphicsオブジェクト。
- bounds
- コンテンツが描画される範囲を指定する System.Drawing.Rectangle。
void _flex_OwnerDrawCell(object sender, OwnerDrawCellEventArgs e) { // セルコンテンツを取得する string text = _flex.GetDataDisplay(e.Row, e.Col); // セルに html が含まれていることをチェックする if (!string.IsNullOrEmpty(text) && text.StartsWith("<html>")) { // ラベルの背景色とコンテンツを取得する _superLabel.BackColor = e.Style.BackColor; _superLabel.Text = text; // Html をグリッドセルに描画する _superLabel.DrawToGraphics(e.Graphics, e.Bounds); // セルが描画された e.Handled = true; } }