Outlook VBA。在我的代码中实现.SentOnBehalfOfName

时间:2017-09-05 15:28:18

标签: vba outlook outlook-vba

我的代码是这样的:

@RealmClass
public class Account extends RealmObject {

    public String timestamp;

    @PrimaryKey
    public long id;

    public String name;

    public String email;

    public Relation relation_tx;

    public Relation relation_rx;

    public Message message_last_rx;

    public Message message_last_tx;
}

我想添加类似myItem.SentOnBehalfOfName =" sent@behalf.com"进入我的代码,但只是将其粘贴到我的代码中是行不通的。我是编码的菜鸟,所以我可能需要先设置一些东西。有谁可以帮我这个?

我一直在寻找几个小时。我已经尝试了myItem.SentOnBehalfOfName =" sent@behalf.com"但它实际上什么也没做。它也没有显示任何错误,因此我不知道可能出现的问题。有人有线索吗?

1 个答案:

答案 0 :(得分:0)

以前的帖子中描述了这种棘手的SentOnBehalfOfName行为。

def ship (x,y,w,h): 
    return [x-w/2, y-h/2, x+w/2, y-h/2, x+w/2, y+h/2, x-w/2, y+h/2]
ship_id = c.create_polygon(*ship(100, 500, 8, 8),  fill='red')