Edit

Share via


ClickedEventArgs.ControlId Property

Definition

Gets the value of ID property for the Button control that raised the event.

public:
 abstract property System::String ^ ControlId { System::String ^ get(); };
public abstract string ControlId { get; }
member this.ControlId : string
Public MustOverride ReadOnly Property ControlId As String

Property Value

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

Applies to