private VCenterRecord CreateVCenterRecord() { VCenterRecord r = new VCenterRecord(); r.VCenter = (false); return r; }
public override Object Clone() { VCenterRecord rec = new VCenterRecord(); rec.field_1_vcenter = field_1_vcenter; return rec; }
/** * 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; }