예제 #1
0
 private VCenterRecord CreateVCenterRecord()
 {
     VCenterRecord r = new VCenterRecord();
     r.VCenter = (false);
     return r;
 }
예제 #2
0
 public override Object Clone()
 {
     VCenterRecord rec = new VCenterRecord();
     rec.field_1_vcenter = field_1_vcenter;
     return rec;
 }
예제 #3
0
        /**
         * Creates the VCenter Record and Sets it to false (don't horizontally center)
         * @see org.apache.poi.hssf.record.VCenterRecord
         * @see org.apache.poi.hssf.record.Record
         * @return record containing a VCenterRecord
         */

        protected Record CreateVCenter()
        {
            VCenterRecord retval = new VCenterRecord();

            retval.VCenter = (false);
            return retval;
        }