SPField constructor (SPFieldCollection, String, String)
Initializes a new instance of the SPField class based on the specified field collection object, field type, and field name.
Namespace: Microsoft.SharePoint
Assembly: Microsoft.SharePoint (in Microsoft.SharePoint.dll)
Syntax
'Declaration
Public Sub New ( _
fields As SPFieldCollection, _
typeName As String, _
displayName As String _
)
'Usage
Dim fields As SPFieldCollection
Dim typeName As String
Dim displayName As String
Dim instance As New SPField(fields, _
typeName, displayName)
public SPField(
SPFieldCollection fields,
string typeName,
string displayName
)
Parameters
fields
Type: Microsoft.SharePoint.SPFieldCollectionThe field collection to which this field is added.
typeName
Type: System.StringThe name of the field type, which represents an SPFieldType value.
displayName
Type: System.StringThe display name of the field.
Exceptions
Exception | Condition |
---|---|
ArgumentNullException | fields is null . -or- typeName is empty or null . -or- displayName is empty or null . |