REPOST: VBA Acessing Member Variable in C# Com AddIn

M

Matthew Wieder

Is it possible for VBA in Excel to assign to a member variable of a
class in a C# COM AddIn? In C# I have:
namespace mySpace
{
[ClassInterface(ClassInterfaceType.AutoDual), ComVisible(true)]
public class myClass : IDTExtensibility
{
public double myDouble;
public myClass(){}
}
}

in VBA I have:
Dim aClass As mySpace.myClass
Sub Testing()
Set aClass = New mySpace.myClass
aClass.myDouble <--------------------This errors 'unkown member'
End Sub

Is there a way to access member variables in my class or must I write
accessor functions?
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top