Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- using System;
- using System.Drawing;
- using System.Drawing.Printing;
- using System.Windows.Forms;
- namespace R816ImprimirBloqueTexto
- {
- public partial class Principal : Form
- {
- public Principal()
- {
- InitializeComponent();
- }
- private void btnImprimir_Click(object sender, EventArgs e)
- {
- string texto = "La programación reactiva produce aplicaciones más robustas, eficientes y más amigables: " +
- "Arquitectura orientada a evento, Resistencia a fallos, Garantía de respuesta, Escalabilidad.";
- PrintDocument documento = new DocumentoParrafo(texto);
- documento.PrintPage += documento_PrintPage;
- PrintDialog printDialog = new PrintDialog();
- printDialog.Document = documento;
- if (printDialog.ShowDialog() == DialogResult.OK)
- {
- documento.Print();
- }
- }
- private void documento_PrintPage(object sender, PrintPageEventArgs e)
- {
- DocumentoParrafo documento = (DocumentoParrafo) sender;
- using (Font fuente = new Font("Trebuchet", 15))
- {
- e.Graphics.DrawString(documento.Texto, fuente, Brushes.Black, e.MarginBounds, StringFormat.GenericDefault);
- }
- }
- }
- public class DocumentoParrafo : PrintDocument
- {
- private string texto;
- public string Texto { get; set; }
- public DocumentoParrafo(string texto)
- {
- this.Texto = texto;
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement