Name

The Name property of the IOlapAddIn interface returns the name of your add-in program to the calling program. The value of this property is used to identify the program that provides objects to the OLAP Add-In Manager.

Data Type
String
Remarks

Use this property to return the name of your custom add-in program.

Example

Private ThisAddInName = "MySampleAddIn"

'More code

Private Property Get IOlapAddIn_Name() As String

  On Error Resume Next 'Defer errors

  IOlapAddIn_Name = ThisAddInName

  Err.Clear 'clears errors if any occurred

End Property

 

(c) 1988-1998 Microsoft Corporation. All Rights Reserved.