Byung Kun Kim
Posts: 48
Joined: 2011-12-15
|
In OutlookItemEvents class Almost every e.Control returns null.
Public Overrides Sub ProcessWrite(ByVal e As AddinExpress.MSO.ADXCancelEventArgs)
Public Overrides Sub ProcessReply(ByVal Response As Object, ByVal e As AddinExpress.MSO.ADXCancelEventArgs)
Visual Studio's object explorer says, "Returns an instance of the Office control.".
Public ReadOnly Property Control As Object
AddinExpress.MSO.ADXCancelEventArgs
Returns an instance of the Office control.
What is this for? |
|
Andrei Smolin
Add-in Express team
Posts: 17500
Joined: 2006-05-11
|
You can only use this property in certain scenarios related to handling command bar controls. In any other situation, this property is null (Nothing in VB.NET).
Regards from Belarus (GMT+3),
Andrei Smolin
Add-in Express Team Leader |
|