Agregar archivos de proyecto.
This commit is contained in:
45
tsPDFUtilsCore/Enums.cs
Normal file
45
tsPDFUtilsCore/Enums.cs
Normal file
@@ -0,0 +1,45 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Text;
|
||||
|
||||
namespace tsPDFUtilsCore
|
||||
{
|
||||
public class Enums
|
||||
|
||||
{
|
||||
|
||||
public enum EsquinaEnum : int
|
||||
{
|
||||
INFERIOR_IZQUIERDA = 0,
|
||||
INFERIOR_DERECHA = 1,
|
||||
SUPERIOR_IZQUIERDA = 2,
|
||||
SUPERIOR_DERECHA = 3
|
||||
}
|
||||
|
||||
public enum AlineamientoEnum : int
|
||||
{
|
||||
IZQUIERDA = 0,
|
||||
DERECHA = 1,
|
||||
CENTRO = 2,
|
||||
JUSTIFICADO = 3
|
||||
}
|
||||
public enum FuenteEnum
|
||||
{
|
||||
COURIER,
|
||||
COURIER_BOLD,
|
||||
COURIER_BOLDOBLIQUE,
|
||||
COURIER_OBLIQUE,
|
||||
HELVETICA,
|
||||
HELVETICA_BOLD,
|
||||
HELVETICA_BOLDOBLIQUE,
|
||||
HELVETICA_OBLIQUE,
|
||||
SYMBOL,
|
||||
TIMES_ROMAN,
|
||||
TIMES_BOLD,
|
||||
TIMES_BOLDITALIC,
|
||||
TIMES_ITALIC,
|
||||
ZAPFDINGBATS
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user