/** * Set value of BCC * * @param context * @param bcc */ public final void setBCC(com.mendix.systemwideinterfaces.core.IContext context, String bcc) { getMendixObject().setValue(context, MemberNames.BCC.toString(), bcc); }
/** * @param context * @return value of BCC */ public final String getBCC(com.mendix.systemwideinterfaces.core.IContext context) { return (String) getMendixObject().getValue(context, MemberNames.BCC.toString()); }