public bool Equals(ST_VerticalAlignment other)
 {
     if (other == (ST_VerticalAlignment)null)
     {
         return(false);
     }
     return(this._ooxmlEnumerationValue == other._ooxmlEnumerationValue);
 }
 static ST_VerticalAlignment()
 {
     ST_VerticalAlignment.top         = new ST_VerticalAlignment("top");
     ST_VerticalAlignment.center      = new ST_VerticalAlignment("center");
     ST_VerticalAlignment.bottom      = new ST_VerticalAlignment("bottom");
     ST_VerticalAlignment.justify     = new ST_VerticalAlignment("justify");
     ST_VerticalAlignment.distributed = new ST_VerticalAlignment("distributed");
 }
示例#3
0
 static ST_VerticalAlignment()
 {
     top         = new ST_VerticalAlignment("top");
     center      = new ST_VerticalAlignment("center");
     bottom      = new ST_VerticalAlignment("bottom");
     justify     = new ST_VerticalAlignment("justify");
     distributed = new ST_VerticalAlignment("distributed");
 }
示例#4
0
        /**
         * Get the type of vertical alignment for the cell
         *
         * @return the type of aligment
         * @see VerticalAlignment
         */
        public VerticalAlignment GetVertical()
        {
            ST_VerticalAlignment align = cellAlignement.vertical;

            return((VerticalAlignment)align);
        }