Shape.DrawToBitmap, méthode
Prend en charge le rendu dans la bitmap spécifiée.
Espace de noms : Microsoft.VisualBasic.PowerPacks
Assembly : Microsoft.VisualBasic.PowerPacks.Vs (dans Microsoft.VisualBasic.PowerPacks.Vs.dll)
Syntaxe
'Déclaration
Public MustOverride Sub DrawToBitmap ( _
bitmap As Bitmap, _
targetBounds As Rectangle _
)
public abstract void DrawToBitmap(
Bitmap bitmap,
Rectangle targetBounds
)
public:
virtual void DrawToBitmap(
Bitmap^ bitmap,
Rectangle targetBounds
) abstract
abstract DrawToBitmap :
bitmap:Bitmap *
targetBounds:Rectangle -> unit
public abstract function DrawToBitmap(
bitmap : Bitmap,
targetBounds : Rectangle
)
Paramètres
- bitmap
Type : System.Drawing.Bitmap
Bitmap à dessiner la valeur.
- targetBounds
Type : System.Drawing.Rectangle
Rectangle dans lequel LineShape est affiché.
Notes
Si les coordonnées d'X ou d'Y ou les paramètres d'Width ou d'Height d'targetBounds sont moins de 0, ArgumentException sera levé.
Exemples
L'exemple suivant montre comment utiliser la méthode d'DrawToBitmap pour dessiner LineShape sur un contrôle d'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;
Sécurité .NET Framework
- Confiance totale accordée à l'appelant immédiat. Ce membre ne peut pas être utilisé par du code d'un niveau de confiance partiel. Pour plus d'informations, consultez Utilisation de bibliothèques à partir de code d'un niveau de confiance partiel.
Voir aussi
Référence
Microsoft.VisualBasic.PowerPacks, espace de noms
Autres ressources
Comment : dessiner des lignes avec le contrôle LineShape (Visual Studio)
Comment : dessiner des formes avec les contrôles OvalShape et RectangleShape (Visual Studio)