2014-07-03 68 views
0

在我要添加和更新多個Google聯繫人的計劃中,我需要設置聯繫人的Job Title字段(可在Gmail的Google的商戶模板下使用)。我已經嘗試了幾件事情 - 設置Title屬性,製作擴展屬性,設置Occupation字段,等等。在Google聯繫人中設置職位

//Didn't even show up when I checked the contact on Gmail 
contact.ExtendedProperties.Add(new ExtendedProperty(splitter[1], "Job Title")); 
//Caused other problems; also didn't work 
contact.Title = splitter[1]; 

我想,我可能需要

  1. 設置聯繫人的模板
  2. 莫名其妙定置了聯繫人的職位那裏。

我檢查了documentation,並且一次又一次地運行它,並在Google上搜索了幾次,結果尚未顯示。

回答

0

我相信這是在googlecontact->組織之下。這給你一個組織的名單。每個組織都有一個Title屬性(以及許多其他屬性),這就是您要查找的內容。

相關問題