Button.Activate 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.
Activates the Button.
public:
void Activate();
public void Activate ();
member this.Activate : unit -> unit
Public Sub Activate ()
Examples
The following code example adds two Button controls to a document and then programmatically activates the first button by using the Activate method.
This example is for a document-level customization.
private void ActivateControl()
{
Microsoft.Office.Tools.Word.Controls.Button button1 =
this.Controls.AddButton(25, 25, 80, 30, "button1");
button1.Text = "Button 1";
Microsoft.Office.Tools.Word.Controls.Button button2 =
this.Controls.AddButton(25, 100, 80, 30, "button2");
button2.Text = "Button 2";
// Programmatically activate the first button.
button1.Activate();
}
Private Sub ActivateControl()
Dim Button1 As Microsoft.Office.Tools.Word.Controls.Button = _
Me.Controls.AddButton(25, 25, 80, 30, "Button1")
Button1.Text = "Button 1"
Dim Button2 As Microsoft.Office.Tools.Word.Controls.Button = _
Me.Controls.AddButton(25, 100, 80, 30, "Button2")
Button2.Text = "Button 2"
' Programmatically activate the first button.
Button1.Activate()
End Sub