/* ** GENEREATED FILE - DO NOT MODIFY ** */ package com.wilutions.mslib.outlook; import com.wilutions.com.*; /** * ColumnFormat. * */ @CoClass(guid="{0006109E-0000-0000-C000-000000000046}") public class ColumnFormat extends Dispatch implements _ColumnFormat { static boolean __typelib__loaded = __TypeLib.load(); @DeclDISPID(61440) public _Application getApplication() throws ComException { final Object obj = this._dispatchCall(61440,"Application", DISPATCH_PROPERTYGET,null); if (obj == null) return null; return Dispatch.as(obj, com.wilutions.mslib.outlook.impl._ApplicationImpl.class); } @DeclDISPID(61450) public OlObjectClass getClass_() throws ComException { final Object obj = this._dispatchCall(61450,"Class", DISPATCH_PROPERTYGET,null); if (obj == null) return null; return OlObjectClass.valueOf((Integer)obj); } @DeclDISPID(61451) public _NameSpace getSession() throws ComException { final Object obj = this._dispatchCall(61451,"Session", DISPATCH_PROPERTYGET,null); if (obj == null) return null; return Dispatch.as(obj, com.wilutions.mslib.outlook.impl._NameSpaceImpl.class); } @DeclDISPID(61441) public IDispatch getParent() throws ComException { final Object obj = this._dispatchCall(61441,"Parent", DISPATCH_PROPERTYGET,null); if (obj == null) return null; return (IDispatch)obj; } @DeclDISPID(64030) public String getLabel() throws ComException { final Object obj = this._dispatchCall(64030,"Label", DISPATCH_PROPERTYGET,null); if (obj == null) return null; return (String)obj; } @DeclDISPID(64030) public void setLabel(final String value) throws ComException { assert(value != null); this._dispatchCall(64030,"Label", DISPATCH_PROPERTYPUT,value); } @DeclDISPID(64396) public Integer getFieldFormat() throws ComException { final Object obj = this._dispatchCall(64396,"FieldFormat", DISPATCH_PROPERTYGET,null); if (obj == null) return null; return (Integer)obj; } @DeclDISPID(64396) public void setFieldFormat(final Integer value) throws ComException { assert(value != null); this._dispatchCall(64396,"FieldFormat", DISPATCH_PROPERTYPUT,value); } @DeclDISPID(8471) public Integer getWidth() throws ComException { final Object obj = this._dispatchCall(8471,"Width", DISPATCH_PROPERTYGET,null); if (obj == null) return null; return (Integer)obj; } @DeclDISPID(8471) public void setWidth(final Integer value) throws ComException { assert(value != null); this._dispatchCall(8471,"Width", DISPATCH_PROPERTYPUT,value); } @DeclDISPID(64034) public OlAlign getAlign() throws ComException { final Object obj = this._dispatchCall(64034,"Align", DISPATCH_PROPERTYGET,null); if (obj == null) return null; return OlAlign.valueOf((Integer)obj); } @DeclDISPID(64034) public void setAlign(final OlAlign value) throws ComException { assert(value != null); this._dispatchCall(64034,"Align", DISPATCH_PROPERTYPUT,value.value); } @DeclDISPID(64398) public OlUserPropertyType getFieldType() throws ComException { final Object obj = this._dispatchCall(64398,"FieldType", DISPATCH_PROPERTYGET,null); if (obj == null) return null; return OlUserPropertyType.valueOf((Integer)obj); } public ColumnFormat() throws ComException { super("{0006109E-0000-0000-C000-000000000046}", "{0006309E-0000-0000-C000-000000000046}"); } protected ColumnFormat(long ndisp) { super(ndisp); } public String toString() { return "[ColumnFormat" + super.toString() + "]"; } }