Shape.DrawToBitmap メソッド
更新 : 2007 年 11 月
指定したビットマップへのレンダリングをサポートします。
名前空間 : Microsoft.VisualBasic.PowerPacks
アセンブリ : Microsoft.VisualBasic.PowerPacks.Vs (Microsoft.VisualBasic.PowerPacks.Vs.dll 内)
構文
'宣言
Public MustOverride Sub DrawToBitmap ( _
bitmap As Bitmap, _
targetBounds As Rectangle _
)
'使用
Dim instance As Shape
Dim bitmap As Bitmap
Dim targetBounds As Rectangle
instance.DrawToBitmap(bitmap, targetBounds)
public abstract void DrawToBitmap(
Bitmap bitmap,
Rectangle targetBounds
)
public:
virtual void DrawToBitmap(
Bitmap^ bitmap,
Rectangle targetBounds
) abstract
public abstract function DrawToBitmap(
bitmap : Bitmap,
targetBounds : Rectangle
)
パラメータ
- bitmap
型 : System.Drawing.Bitmap
targetBounds
型 : System.Drawing.Rectangle
解説
targetBounds の X 座標、Y 座標、Width パラメータ、または Height パラメータが 0 未満の場合、ArgumentException がスローされます。
例
DrawToBitmap メソッドを使用して LineShape を PictureBox コントロールの上に描画する方法を次の例に示します。
Dim pic As New System.Drawing.Bitmap(Me.PictureBox1.Image, _
PictureBox1.Width, PictureBox1.Height)
Dim rect As New System.Drawing.Rectangle(LineShape1.X1, _
LineShape1.Y1, LineShape1.X2 - LineShape1.X1, _
LineShape1.Y2 - LineShape1.Y1)
LineShape1.DrawToBitmap(pic, rect)
PictureBox2.Image = pic
System.Drawing.Bitmap pic = new System.Drawing.Bitmap(this.pictureBox1.Image,
pictureBox1.Width, pictureBox1.Height);
System.Drawing.Rectangle rect = new System.Drawing.Rectangle(lineShape1.X1,
lineShape1.Y1, lineShape1.X2 - lineShape1.X1, lineShape1.Y2 - lineShape1.Y1);
lineShape1.DrawToBitmap(pic, rect);
pictureBox2.Image = pic;
アクセス許可
- 直前の呼び出し元に対する完全な信頼。このメンバは、部分的に信頼されているコードから使用することはできません。詳細については、「部分信頼コードからのライブラリの使用」を参照してください。
参照
参照
Microsoft.VisualBasic.PowerPacks 名前空間
その他の技術情報
方法 : LineShape コントロールを使用して線を描画する (Visual Studio)
方法 : OvalShape コントロールおよび RectangleShape コントロールを使用して図形を描画する (Visual Studio)