ClickedEventArgs.ControlId Property
Gets the value of ID property for the Button control that raised the event.
Namespace: Microsoft.Office.InfoPath
Assembly: Microsoft.Office.InfoPath (in Microsoft.Office.InfoPath.dll)
Syntax
'Declaration
Public MustOverride ReadOnly Property ControlId As String
Get
'Usage
Dim instance As ClickedEventArgs
Dim value As String
value = instance.ControlId
public abstract string ControlId { get; }
Property Value
Type: System.String
The ID of the button control.
Examples
In the following example, the ControlId property is used to display the ID property value (MyButton) for the Button control.
public void MyButton_Clicked(object sender, ClickedEventArgs e)
{
MessageBox.Show(e.ControlId);
}
Public Sub MyButton_Clicked(ByVal sender As Object, _
ByVal e As ClickedEventArgs)
MessageBox.Show(e.ControlId)
End Sub