PhoneCall.AlternateFormat Property
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.
Gets or sets a formatting string for the text value that is displayed on devices that are not able to originate telephone calls. 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. This API is obsolete. 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
Property Value
A formatting string for the text value that is displayed on devices that are not able to originate telephone calls.
- Attributes
Remarks
An example of the default string is, Call {0}
at {1}
right now!! 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.