IDtsLogProviderUI.Edit(IWin32Window) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Opens a user interface to edit a task.
public:
bool Edit(System::Windows::Forms::IWin32Window ^ parentWindow);
public bool Edit (System.Windows.Forms.IWin32Window parentWindow);
abstract member Edit : System.Windows.Forms.IWin32Window -> bool
Public Function Edit (parentWindow As IWin32Window) As Boolean
Parameters
- parentWindow
- IWin32Window
The IWin32Window interface of the designer hosting the task.
Returns
true indicates that the task properties were modified.
Remarks
This method is called when you want to open the user interface that implements editing capabilities. If the user does change any settings, the Boolean
is set to true
so you can handle changes. You use the UITypeName to get the qualified name of the assembly that implements the user interface of the task. If UITypeName is null, that means that the task is not editable, or does not have a user interface for editing.