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
'Usage
Property Value
The ID of the button control.
Example
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
See Also
Reference
ClickedEventArgs Class
ClickedEventArgs Members
Microsoft.Office.InfoPath Namespace