/* ** GENEREATED FILE - DO NOT MODIFY ** */ package com.wilutions.mslib.outlook.impl; import com.wilutions.com.*; @SuppressWarnings("all") @CoClass(guid="{C091694E-A463-DB41-5DAE-69E7A5F7FCBC}") public class _DRecipientControlImpl extends Dispatch implements com.wilutions.mslib.outlook._DRecipientControl { @DeclDISPID(-514) public Byte getEnabled() throws ComException { final Object obj = this._dispatchCall(-514,"Enabled", DISPATCH_PROPERTYGET,null); if (obj == null) return null; return (Byte)obj; } @DeclDISPID(-514) public void setEnabled(final Byte value) throws ComException { assert(value != null); this._dispatchCall(-514,"Enabled", DISPATCH_PROPERTYPUT,value); } @DeclDISPID(-501) public Integer getBackColor() throws ComException { final Object obj = this._dispatchCall(-501,"BackColor", DISPATCH_PROPERTYGET,null); if (obj == null) return null; return (Integer)obj; } @DeclDISPID(-501) public void setBackColor(final Integer value) throws ComException { assert(value != null); this._dispatchCall(-501,"BackColor", DISPATCH_PROPERTYPUT,value); } @DeclDISPID(-513) public Integer getForeColor() throws ComException { final Object obj = this._dispatchCall(-513,"ForeColor", DISPATCH_PROPERTYGET,null); if (obj == null) return null; return (Integer)obj; } @DeclDISPID(-513) public void setForeColor(final Integer value) throws ComException { assert(value != null); this._dispatchCall(-513,"ForeColor", DISPATCH_PROPERTYPUT,value); } @DeclDISPID(-2147356664) public Byte getReadOnly() throws ComException { final Object obj = this._dispatchCall(-2147356664,"ReadOnly", DISPATCH_PROPERTYGET,null); if (obj == null) return null; return (Byte)obj; } @DeclDISPID(-2147356664) public void setReadOnly(final Byte value) throws ComException { assert(value != null); this._dispatchCall(-2147356664,"ReadOnly", DISPATCH_PROPERTYPUT,value); } @DeclDISPID(-512) public IDispatch getFont() throws ComException { final Object obj = this._dispatchCall(-512,"Font", DISPATCH_PROPERTYGET,null); if (obj == null) return null; return (IDispatch)obj; } @DeclDISPID(-512) public void setFont(final IDispatch value) throws ComException { this._dispatchCall(-512,"Font", DISPATCH_PROPERTYPUT,Dispatch.param(value)); } @DeclDISPID(12) public Integer getSpecialEffect() throws ComException { final Object obj = this._dispatchCall(12,"SpecialEffect", DISPATCH_PROPERTYGET,null); if (obj == null) return null; return (Integer)obj; } @DeclDISPID(12) public void setSpecialEffect(final Integer value) throws ComException { assert(value != null); this._dispatchCall(12,"SpecialEffect", DISPATCH_PROPERTYPUT,value); } public _DRecipientControlImpl(String progId) throws ComException { super(progId, "{0006F025-0000-0000-C000-000000000046}"); } protected _DRecipientControlImpl(long ndisp) { super(ndisp); } public String toString() { return "[_DRecipientControlImpl" + super.toString() + "]"; } }