Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
Gets the maximum length of the data type.
Namespace: Microsoft.SqlServer.Management.Smo
Assembly: Microsoft.SqlServer.Smo (in Microsoft.SqlServer.Smo.dll)
Syntax
'Declaration
Public Property MaximumLength As Integer
Get
Set
'Usage
Dim instance As DataType
Dim value As Integer
value = instance.MaximumLength
instance.MaximumLength = value
public int MaximumLength { get; set; }
public:
property int MaximumLength {
int get ();
void set (int value);
}
member MaximumLength : int with get, set
function get MaximumLength () : int
function set MaximumLength (value : int)
Property Value
Type: System.Int32
An Int32 value that specifies the maximum length of the data type.
Examples
Visual Basic
Dim d As DataType
d = New DataType(SqlDataType.MaximumLength)
PowerShell
$dt = new-object Microsoft.SqlServer.Management.Smo.DataType([Microsoft.SqlServer.Management.Smo.SqlDataType]::MaximumLength)