DbSyncColumnDescription::Size Property

Gets or sets the size of the column.

Namespace:  Microsoft.Synchronization.Data
Assembly:  Microsoft.Synchronization.Data (in Microsoft.Synchronization.Data.dll)

public:
property String^ Size {
	String^ get ();
	void set (String^ value);
}

Property Value

Type: System::String
The size of the column if it is specified; otherwise nullptr.

The properties Type and Size are used together to specify variable-length data types. For example, in SQL Server a column of type varchar(256) is represented by setting Type = "varchar" and Size = "256".

Show: