/* ** GENEREATED FILE - DO NOT MODIFY ** */ package com.wilutions.mslib.office.impl; import com.wilutions.com.*; @SuppressWarnings("all") @CoClass(guid="{C09B8E46-A463-DB41-5DAE-69E7A5F7FCBC}") public class IMsoDownBarsImpl extends Dispatch implements com.wilutions.mslib.office.IMsoDownBars { @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(129) public com.wilutions.mslib.office.IMsoInterior getInterior() throws ComException { final Object obj = this._dispatchCall(129,"Interior", DISPATCH_PROPERTYGET,null); if (obj == null) return null; return Dispatch.as(obj, com.wilutions.mslib.office.impl.IMsoInteriorImpl.class); } @DeclDISPID(1663) public com.wilutions.mslib.office.ChartFillFormat getFill() throws ComException { final Object obj = this._dispatchCall(1663,"Fill", DISPATCH_PROPERTYGET,null); if (obj == null) return null; return Dispatch.as(obj, com.wilutions.mslib.office.impl.ChartFillFormatImpl.class); } @DeclDISPID(1610743815) public com.wilutions.mslib.office.IMsoChartFormat getFormat() throws ComException { final Object obj = this._dispatchCall(1610743815,"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 IMsoDownBarsImpl(String progId) throws ComException { super(progId, "{000C172D-0000-0000-C000-000000000046}"); } protected IMsoDownBarsImpl(long ndisp) { super(ndisp); } public String toString() { return "[IMsoDownBarsImpl" + super.toString() + "]"; } }