StylusButton.Name Propriedade
Definição
Importante
Algumas informações dizem respeito a um produto pré-lançado que pode ser substancialmente modificado antes de ser lançado. A Microsoft não faz garantias, de forma expressa ou implícita, em relação à informação aqui apresentada.
Recebe o nome do botão da stylus.
public:
property System::String ^ Name { System::String ^ get(); };
public string Name { get; }
member this.Name : string
Public ReadOnly Property Name As String
Valor de Propriedade
O nome do botão da stylus.
Exemplos
O exemplo seguinte demonstra a Name propriedade.
// Get the name of the StylusButton
textbox1.AppendText("StylusButton.Name: " + myStylusButton.Name + "\n");
' Get the name of the StylusButton
textbox1.AppendText("StylusButton.Name: " + myStylusButton.Name + vbCrLf)