IDTToolsOptionsPage.GetProperties(Object) Method

Definition

Returns an object containing all properties contained on the specified custom Tools Options page.

public:
 void GetProperties([Runtime::InteropServices::Out] System::Object ^ % PropertiesObject);
void GetProperties([Runtime::InteropServices::Out] winrt::Windows::Foundation::IInspectable const & & PropertiesObject);
[System.Runtime.InteropServices.DispId(2)]
public void GetProperties (out object PropertiesObject);
[<System.Runtime.InteropServices.DispId(2)>]
abstract member GetProperties : obj -> unit
Public Sub GetProperties (ByRef PropertiesObject As Object)

Parameters

PropertiesObject
Object

The Tools Options object.

Attributes

Remarks

When you call Properties[] with the category and page that correspond to this control, then GetProperties is invoked and the control creates a Properties[] collection. GetProperties can return NULL if you do not want to implement properties, but it is to your advantage that you do implement properties.

To create a custom Options page, you create an ActiveX control, set the required registry settings, and then implement this interface. For more information, see Controlling Options Settings.

Applies to