Gets or sets a value that indicates whether display text stops at the last column or wraps to the next line when a line contains more data than can fit on one row.
Syntax
Visual Basic (Declaration) | |
---|
Public Property AutoWrap As Boolean |
Visual Basic (Usage) | Copy Code |
---|
Dim instance As Vt
Dim value As Boolean
instance.AutoWrap = value
value = instance.AutoWrap |
C# | |
---|
public bool AutoWrap {get; set;} |
Managed Extensions for C++ | |
---|
public: __property bool get_AutoWrap();
public: __property void set_AutoWrap(
bool value
); |
C++/CLI | |
---|
public:
property bool AutoWrap {
bool get();
void set ( bool value);
} |
Property Value
true if text should wrap when a line contains more data then can fit on a row; false otherwise. The default value is false.
Remarks
Requirements
Target Platforms: Microsoft .NET Framework 2.0
See Also