Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- using System.Drawing.Printing;
- namespace R815ImprimirVariosDocumentos
- {
- class DocumentoTexto : PrintDocument
- {
- private string[] texto;
- private int numeroPagina;
- private int desplazamiento;
- public string[] Texto
- {
- get { return texto; }
- set { texto = value; }
- }
- public int NumeroPagina
- {
- get { return numeroPagina; }
- set { numeroPagina = value; }
- }
- public int Desplazamiento
- {
- get { return desplazamiento; }
- set { desplazamiento = value; }
- }
- public DocumentoTexto(string[] texto)
- {
- this.Texto = texto;
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement