MobileControl.Wrapping 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 the specified wrapping mode for the style. The default value is NotSet. This API is obsolete. For information about how to develop ASP.NET mobile applications, see Mobile Apps & Sites with ASP.NET.
public:
virtual property System::Web::UI::MobileControls::Wrapping Wrapping { System::Web::UI::MobileControls::Wrapping get(); void set(System::Web::UI::MobileControls::Wrapping value); };
[System.ComponentModel.Bindable(true)]
public virtual System.Web.UI.MobileControls.Wrapping Wrapping { get; set; }
[<System.ComponentModel.Bindable(true)>]
member this.Wrapping : System.Web.UI.MobileControls.Wrapping with get, set
Public Overridable Property Wrapping As Wrapping
Property Value
An enumerated value that specifies the wrapping mode for the style.
- Attributes
Examples
The following example demonstrates how to use the Wrapping property by setting the FirstForm
Wrapping property based on the capabilities of the browser. This code sample is part of a larger example for the EnsureTemplatedUI property.
Remarks
The following table contains the definitions of the Wrapping enumeration.
Enumerations | Value | Description |
---|---|---|
NotSet |
0 | No size is set for the specified object. This is the default value. |
Wrap |
1 | Wrap to the next line. |
NoWrap |
2 | The text is not wrapped to the next line. |