PhoneCall.AlternateFormat Propriedade

Definição

Obtém ou define uma cadeia de caracteres de formatação para o valor de texto exibido em dispositivos que não são capazes de originar chamadas telefônicas.Gets or sets a formatting string for the text value that is displayed on devices that are not able to originate telephone calls. O valor padrão é {0} {1}, o que significa que o texto padrão será a propriedade Text com a propriedade PhoneNumber concatenada para ela, com um espaço entre ambas.The default value is {0} {1}, meaning that the default text will be the Text property with the PhoneNumber property concatenated to it, with a space between them. Esta API está obsoleta.This API is obsolete. Para saber mais sobre como desenvolver aplicativos móveis ASP.NET, veja Mobile Apps & Sites with ASP.NET (Aplicativos móveis e sites com ASP.NET).For information about how to develop ASP.NET mobile applications, see Mobile Apps & Sites with ASP.NET.

public:
 property System::String ^ AlternateFormat { System::String ^ get(); void set(System::String ^ value); };
[System.ComponentModel.Bindable(true)]
public string AlternateFormat { get; set; }
[<System.ComponentModel.Bindable(true)>]
member this.AlternateFormat : string with get, set
Public Property AlternateFormat As String

Valor da propriedade

String

Uma cadeia de caracteres de formatação para o valor de texto que é exibido em dispositivos que não podem originar chamadas telefônicas.A formatting string for the text value that is displayed on devices that are not able to originate telephone calls.

Atributos

Comentários

Um exemplo da cadeia de caracteres padrão é, ligue para a {0} {1} direita agora!!An example of the default string is, Call {0} at {1} right now!! onde o sistema substituirá {0} pela Text Propriedade do PhoneCall objeto (o innerText do elemento na página) e {1} pelo valor da PhoneNumber propriedade.where the system replaces {0} with the Text property of the PhoneCall object (the innerText of the element on the page), and {1} with the value of the PhoneNumber property.

Aplica-se a