示例#1
0
 public bool Equals(ST_PageOrder other)
 {
     if (other == null)
     {
         return(false);
     }
     return(_ooxmlEnumerationValue == other._ooxmlEnumerationValue);
 }
示例#2
0
 static ST_PageOrder()
 {
     downThenOver = new ST_PageOrder("downThenOver");
     overThenDown = new ST_PageOrder("overThenDown");
 }
示例#3
0
文件: Sheet.cs 项目: vardars/npoi
 public CT_PageSetup()
 {
     this.paperSizeField = (uint)1;
     this.scaleField = (uint)100;
     this.firstPageNumberField = (uint)1;
     this.fitToWidthField = (uint)1;
     this.fitToHeightField = (uint)1;
     this.pageOrderField = ST_PageOrder.downThenOver;
     this.orientationField = ST_Orientation.@default;
     this.usePrinterDefaultsField = true;
     this.blackAndWhiteField = false;
     this.draftField = false;
     this.cellCommentsField = ST_CellComments.none;
     this.useFirstPageNumberField = false;
     this.errorsField = ST_PrintError.displayed;
     this.horizontalDpiField = (uint)600;
     this.verticalDpiField = (uint)600;
     this.copiesField = (uint)1;
 }