Hello Steve,
Welcome to MSDN forums!
I think the reason you feel the intellisence is not working is that in Excel Object Mode, many properties is returned as a type of Object, thus, we could only get what properties or methods belongs to Object.
For example if we say:
private void ThisAddIn_Startup(object sender, System.EventArgs e)
{
Application.ActiveSheet
}
ActiveSheet is a Object, actually, the return value is a Excel.Worksheet object, please refer to:
http://msdn.microsoft.com/en-us/library/bb212495.aspxSo we need to
explicitly cast ActiveSheet to a Excel.Worksheet:
(Application.ActiveSheet as Excel.Worksheet ).Creator
Hope this helps you.
Thanks.
Tim Li
MSDN Subscriber Support in Forum
If you have any feedback on our support, please contact EMAIL GONE
Please remember to mark the replies as answers if they help and unmark them if they provide no help.