UserDefinedDataTypeCollection.Item Property (String)
Gets a UserDefinedDataType object in the collection by name.
Namespace: Microsoft.SqlServer.Management.Smo
Assembly: Microsoft.SqlServer.Smo (in Microsoft.SqlServer.Smo.dll)
Syntax
'Declaration
Public ReadOnly Default Property Item ( _
name As String _
) As UserDefinedDataType
Get
'Usage
Dim instance As UserDefinedDataTypeCollection
Dim name As String
Dim value As UserDefinedDataType
value = instance(name)
public UserDefinedDataType this[
string name
] { get; }
public:
property UserDefinedDataType^ default[String^ name] {
UserDefinedDataType^ get (String^ name);
}
member Item : UserDefinedDataType
JScript supports the use of indexed properties, but not the declaration of new ones.
Parameters
- name
Type: System.String
A String value that specifies the name of the UserDefinedDataType object in the UserDefinedDataTypeCollection collection.
Property Value
Type: Microsoft.SqlServer.Management.Smo.UserDefinedDataType
A UserDefinedDataType object value that represents the user-defined data type.