PhoneCall.AlternateFormat Property

Definition

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.

[System.ComponentModel.Bindable(true)]
public string AlternateFormat { get; set; }

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.

Applies to

Product Versions
.NET Framework 1.1, 2.0, 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1

See also