Beispiel #1
0
 static PrintCellComments()
 {
     _table       = new PrintCellComments[4];
     NONE         = new PrintCellComments(1);
     AS_DISPLAYED = new PrintCellComments(2);
     AT_END       = new PrintCellComments(3);
 }
 static PrintCellComments()
 { 
     _table= new PrintCellComments[4];
     NONE = new PrintCellComments(1);
     AS_DISPLAYED = new PrintCellComments(2);
     AT_END = new PrintCellComments(3);
 }
Beispiel #3
0
        public PrintCellComments GetCellComment()
        {
            ST_CellComments?nullable = new ST_CellComments?(this.pageSetup.cellComments);

            if (nullable.HasValue)
            {
                return(PrintCellComments.ValueOf((int)nullable.Value));
            }
            return(PrintCellComments.NONE);
        }
Beispiel #4
0
 public PrintCellComments GetCellComment()
 {
     ST_CellComments? val = pageSetup.cellComments;
     return val == null ? PrintCellComments.NONE : PrintCellComments.ValueOf((int)val);
 }