package com.yanzuoguang.util.printer.vo;

/**
 * 对其方式
 *
 * @author 颜佐光
 */
public class ContentAlignment {
    /**
     * 摘要:
     * Content is vertically aligned at the top, and horizontally aligned on the left.
     */
    public static int TopLeft = 1;
    /**
     * 摘要:
     * Content is vertically aligned at the top, and horizontally aligned at the center.
     */
    public static int TopCenter = 2;
    /**
     * 摘要:
     * Content is vertically aligned at the top, and horizontally aligned on the rig
     */
    public static int TopRight = 4;
    /**
     * <p>
     * 摘要:
     * Content is vertically aligned in the middle, and horizontally aligned on the
     * left.
     */
    public static int MiddleLeft = 16;
    /**
     * 摘要:
     * Content is vertically aligned in the middle, and horizontally aligned at the
     * center.
     */
    public static int MiddleCenter = 32;
    /**
     * 摘要:
     * Content is vertically aligned in the middle, and horizontally aligned on the
     * right.
     */
    public static int MiddleRight = 64;
    /**
     * 摘要:
     * Content is vertically aligned at the bottom, and horizontally aligned on the
     * left.
     */
    public static int BottomLeft = 256;
    /**
     * 摘要:
     * Content is vertically aligned at the bottom, and horizontally aligned at the
     * center.
     */
    public static int BottomCenter = 512;
    /**
     * 摘要:
     * Content is vertically aligned at the bottom, and horizontally aligned on the
     * right.
     */
    public static int BottomRight = 1024;
}