26 lines
879 B
C#
26 lines
879 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace tsPDFUtilsCore
|
|
{
|
|
public class TextoEnPdf
|
|
{
|
|
public string Texto { get; set; }
|
|
public FuenteEnum Fuente { get; set; }
|
|
public float TamañoFuente { get; set; }
|
|
public System.Drawing.Color Color { get; set; }
|
|
public double Transparencia { get; set; }
|
|
public EsquinaEnum EsquinaReferencia { get; set; }
|
|
public float AnguloRotacion { get; set; }
|
|
public AlineamientoEnum Alineamiento { get; set; }
|
|
public float CoordenadaX { get; set; }
|
|
public float CoordenadaY { get; set; }
|
|
public int PaginaInicio { get; set; }
|
|
public int PaginaFin { get; set; }
|
|
public float anchoTexto { get; set; }
|
|
public float altoTexto { get; set; }
|
|
public TipoTextoEnum TipoTexto { get; set; }
|
|
}
|
|
}
|