VisualBasic.SetSettingsForImplementation(Object, VisualBasicSettings) 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.
Attaches a VisualBasicSettings instance to an object for use by its implementation.
public:
static void SetSettingsForImplementation(System::Object ^ target, Microsoft::VisualBasic::Activities::VisualBasicSettings ^ value);
public static void SetSettingsForImplementation (object target, Microsoft.VisualBasic.Activities.VisualBasicSettings value);
static member SetSettingsForImplementation : obj * Microsoft.VisualBasic.Activities.VisualBasicSettings -> unit
Public Shared Sub SetSettingsForImplementation (target As Object, value As VisualBasicSettings)
Parameters
- target
- Object
The object to which the VisualBasicSettings instance is attached.
- value
- VisualBasicSettings
The VisualBasicSettings instance to attach.
Remarks
SetSettingsForImplementation exists for the activity author who is creating a new activity in a class. Any VisualBasicSettings required by the new activity's implementation should be attached to the activity in the constructor using SetSettingsForImplementation.