Control.DrawToBitmap(Bitmap, Rectangle) Método

Definición

Permite la representación del mapa de bits especificado.

public:
 void DrawToBitmap(System::Drawing::Bitmap ^ bitmap, System::Drawing::Rectangle targetBounds);
public void DrawToBitmap (System.Drawing.Bitmap bitmap, System.Drawing.Rectangle targetBounds);
member this.DrawToBitmap : System.Drawing.Bitmap * System.Drawing.Rectangle -> unit
Public Sub DrawToBitmap (bitmap As Bitmap, targetBounds As Rectangle)

Parámetros

bitmap
Bitmap

Mapa de bits que se va a dibujar.

targetBounds
Rectangle

Los límites dentro de los cuales se representa el control.

Comentarios

El DrawToBitmap método no es compatible con los controles ActiveX. Puede invalidar el OnPrint evento y proporcionar lógica de impresión personalizada si es necesario.

El DrawToBitmap método tiene las siguientes limitaciones:

  • Se podría producir una excepción ArgumentException para mapas de bits de gran tamaño. El tamaño máximo permitido varía según la máquina.

  • DrawToBitmap no admite los Ink controles para el sistema operativo Windows XP Tablet PC Edition 2005.

  • DrawToBitmap no dibuja un elemento secundario TextBox si la Visible propiedad de TextBox está establecida en false.

  • Los controles dentro de los contenedores se representan en orden inverso.

  • DrawToBitmap no es totalmente funcional para RichTextBox; solo se dibuja el borde de un mapa de bits.

Se aplica a

Consulte también