DefaultDistributionDesigner.OnInputValueChanged Method
Represents the method that is called when a value in the specified input descriptor has changed.
Namespace: Microsoft.Data.Schema.DataGenerator
Assembly: Microsoft.Data.Schema (in Microsoft.Data.Schema.dll)
Syntax
'Declaration
Public Overridable Sub OnInputValueChanged ( _
sender As Object, _
eventArgs As InputChangedEventArgs _
)
'Usage
Dim instance As DefaultDistributionDesigner
Dim sender As Object
Dim eventArgs As InputChangedEventArgs
instance.OnInputValueChanged(sender, _
eventArgs)
public virtual void OnInputValueChanged(
Object sender,
InputChangedEventArgs eventArgs
)
public:
virtual void OnInputValueChanged(
Object^ sender,
InputChangedEventArgs^ eventArgs
)
public function OnInputValueChanged(
sender : Object,
eventArgs : InputChangedEventArgs
)
abstract OnInputValueChanged :
sender:Object *
eventArgs:InputChangedEventArgs -> unit
override OnInputValueChanged :
sender:Object *
eventArgs:InputChangedEventArgs -> unit
Parameters
- sender
Type: System.Object
The source of the event
- eventArgs
Type: Microsoft.Data.Schema.DataGenerator.InputChangedEventArgs
The InputChangedEventArgs class that contains the event data
Implements
IDesigner.OnInputValueChanged(Object, InputChangedEventArgs)
Remarks
The InputChangedEventArgs contain the InputDescriptor that was changed and an array of all the InputDescriptors.
.NET Framework Security
- Full trust for the immediate caller. This member cannot be used by partially trusted code. For more information, see Using Libraries from Partially Trusted Code.
See Also
Reference
DefaultDistributionDesigner Class