SPFieldLink constructor
Inicializa uma nova instância da classe SPFieldLink com o campo especificado.
Namespace: Microsoft.SharePoint
Assembly: Microsoft.SharePoint (in Microsoft.SharePoint.dll)
Syntax
'Declaração
Public Sub New ( _
field As SPField _
)
'Uso
Dim field As SPField
Dim instance As New SPFieldLink(field)
public SPFieldLink(
SPField field
)
Parâmetros
field
Type: Microsoft.SharePoint.SPFieldPara fazer referência a uma coluna. Observe que este objeto deve representar um site existente ou coluna da lista. Ou seja, ele deve estar contido no objeto SPFieldCollection que é retornado pela propriedade SPWeb.Fields ou a propriedade SPList.Fields .
Comentários
Quando um objeto SPFieldLink é criado, algumas de suas propriedades são inicializadas para os valores das propriedades correspondentes do objeto SPField que é passada como um argumento para o construtor. As propriedades e seus valores estão listados na tabela a seguir.
Propriedade |
O valor da |
---|---|
Examples
O exemplo a seguir mostra a parte de um aplicativo de console que adiciona um objeto SPFieldSPFieldCollection, do site e em seguida, usa o objeto para criar um objeto SPFieldLink e adiciona esse objeto a SPFieldLinkCollection de um tipo de conteúdo.
Observe que, antes de poder usar um novo campo para criar um objeto SPFieldLink , o campo deve ser um membro de uma coleção de campo no nível do site ou lista.
Dim site As SPSite = New SPSite("https://localhost")
Dim web As SPWeb = site.OpenWeb()
' Get the site content type collection.
Dim contentTypes As SPContentTypeCollection = web.ContentTypes
' Create a Customer content type derived from the Contact content type.
Dim contentType As SPContentType = New SPContentType(contentTypes("Contact"), contentTypes, "Customer")
' Add the content type to the site collection.
contentTypes.Add(contentType)
' Get the site fields (columns) collection.
Dim siteFields As SPFieldCollection = web.Fields
' Create a new field (column) and add it to the site collection.
Dim fieldName As String = siteFields.Add("Last Order", _
SPFieldType.DateTime, False)
' Create a reference to the new field.
Dim fieldLink As SPFieldLink = _
New SPFieldLink(siteFields.GetField(fieldName))
' Add the field reference to the content type.
contentType.FieldLinks.Add(fieldLink)
' Commit changes to the content type.
contentType.Update()
' Clean up.
web.Dispose()
site.Dispose()
SPSite site = new SPSite("https://localhost");
SPWeb web = site.OpenWeb();
// Get the site content type collection.
SPContentTypeCollection contentTypes = web.ContentTypes;
// Create a Customer content type derived from the Contact content type.
SPContentType contentType = new SPContentType(contentTypes["Contact"],
contentTypes, "Customer");
// Add the content type to the site collection.
contentTypes.Add(contentType);
// Get the site fields (columns) collection.
SPFieldCollection siteFields = web.Fields;
// Create a new field (column) and add it to the site collection.
string fieldName = siteFields.Add("Last Order", SPFieldType.DateTime, false);
// Create a reference to the new field.
SPFieldLink fieldLink = new SPFieldLink(siteFields.GetField(fieldName));
// Add the field reference to the content type.
contentType.FieldLinks.Add(fieldLink);
// Commit changes to the content type.
contentType.Update();
// Clean up.
web.Dispose();
site.Dispose();
Ver também
Referência
Microsoft.SharePoint namespace