ActiveXModuleMemberTypes

Use these constants with the ActiveXModule.MemberType property to specify the type of member the module accesses when it executes.

  • ActiveXMember_CallMethod –(Value: 1) Specifies that the module calls a method.
  • ActiveXMember_DoNotCall –(Value: -1) Specifies that the module does not call a method or access a property.
  • ActiveXMember_GetProperty –(Value: 2) Specifies that the module gets a property.
  • ActiveXMember_SetProperty –(Value: 4) Specifies that the module sets a property.
  • ActiveXMember_SetPropertyByRef –(Value: 8) Specifies that the module sets a reference to a property.

See Also

ActiveXModule.MemberType