Adds a custom configuration page using the
given path to a .NET assembly and the name of the custom user
control residing in the assembly.
| [Visual Basic .NET] |
|---|
Public Sub AddCustomUserControlPage( _
ByVal pPlugin As IAgUiPlugin, _
ByVal AsmPath As String, _
ByVal UserControlClass As String, _
ByVal Caption As String _
)
|
| [C#] |
|---|
public void AddCustomUserControlPage(
|
| [Managed C++] |
|---|
public: void AddCustomUserControlPage(
|
| [Java] |
|---|
public addCustomUserControlPage(
|
| [Unmanaged C++] |
|---|
public: HRESULT AddCustomUserControlPage(
|
- pPlugin
- A plugin object
- AsmPath
- A full path to the assembly containing the .NET user control type that will be created and embedded into a custom property page.
- UserControlClass
- A full name of the user control that will be instantiated and embedded into a new custom property page.
- Caption
- A text displayed as custom property page title.
AddCustomUserControlPage allows .NET user
controls to be embedded into a custom property page.
| Add a custom property page | Copy Code
|
|
|---|---|---|
|
||