/* ** GENEREATED FILE - DO NOT MODIFY ** */ package com.wilutions.mslib.office.impl; import com.wilutions.com.*; @SuppressWarnings("all") @CoClass(guid="{C09B8E4E-A463-DB41-5DAE-69E7A5F7FCBC}") public class GridLinesImpl extends Dispatch implements com.wilutions.mslib.office.GridLines { @DeclDISPID(110) public String getName() throws ComException { final Object obj = this._dispatchCall(110,"Name", DISPATCH_PROPERTYGET,null); if (obj == null) return null; return (String)obj; } @DeclDISPID(235) public Object Select() throws ComException { final Object obj = this._dispatchCall(235,"Select", DISPATCH_METHOD,null); if (obj == null) return null; return (Object)obj; } @DeclDISPID(150) public IDispatch getParent() throws ComException { final Object obj = this._dispatchCall(150,"Parent", DISPATCH_PROPERTYGET,null); if (obj == null) return null; return (IDispatch)obj; } @DeclDISPID(128) public com.wilutions.mslib.office.IMsoBorder getBorder() throws ComException { final Object obj = this._dispatchCall(128,"Border", DISPATCH_PROPERTYGET,null); if (obj == null) return null; return Dispatch.as(obj, com.wilutions.mslib.office.impl.IMsoBorderImpl.class); } @DeclDISPID(117) public Object Delete() throws ComException { final Object obj = this._dispatchCall(117,"Delete", DISPATCH_METHOD,null); if (obj == null) return null; return (Object)obj; } @DeclDISPID(1610743813) public com.wilutions.mslib.office.IMsoChartFormat getFormat() throws ComException { final Object obj = this._dispatchCall(1610743813,"Format", DISPATCH_PROPERTYGET,null); if (obj == null) return null; return Dispatch.as(obj, com.wilutions.mslib.office.impl.IMsoChartFormatImpl.class); } @DeclDISPID(148) public IDispatch getApplication() throws ComException { final Object obj = this._dispatchCall(148,"Application", DISPATCH_PROPERTYGET,null); if (obj == null) return null; return (IDispatch)obj; } @DeclDISPID(149) public Integer getCreator() throws ComException { final Object obj = this._dispatchCall(149,"Creator", DISPATCH_PROPERTYGET,null); if (obj == null) return null; return (Integer)obj; } public GridLinesImpl(String progId) throws ComException { super(progId, "{000C1725-0000-0000-C000-000000000046}"); } protected GridLinesImpl(long ndisp) { super(ndisp); } public String toString() { return "[GridLinesImpl" + super.toString() + "]"; } }