SPFieldLinkCollection.Count property
取得集合中的資料行或欄位參考的總數。
Namespace: Microsoft.SharePoint
Assembly: Microsoft.SharePoint (in Microsoft.SharePoint.dll)
Syntax
'宣告
Public Overrides ReadOnly Property Count As Integer
Get
'用途
Dim instance As SPFieldLinkCollection
Dim value As Integer
value = instance.Count
public override int Count { get; }
Property value
Type: System.Int32
集合中的項目總數。
Implements
Examples
下列範例會逐一查看的欄位與欄位連結集合的內容類型,列印的每個欄位的InternalName屬性值與對應的欄位連結的Name屬性值的主控台應用程式。
Imports System
Imports Microsoft.SharePoint
Module ConsoleApp
Sub Main()
Dim site As SPSite = New SPSite("https://localhost")
Try
Dim web As SPWeb = site.OpenWeb()
Try
Dim ctName As String = "Announcement"
Dim contentType As SPContentType = web.ContentTypes(ctName)
If contentType IsNot Nothing Then
For i As Integer = 0 To contentType.FieldLinks.Count - 1
Console.WriteLine("Field.InternalName = {0}", _
contentType.Fields(i).InternalName)
Console.WriteLine("FieldLink.Name = {0}", _
contentType.FieldLinks(i).Name)
Console.WriteLine()
Next
End If
Finally
web.Dispose()
End Try
Finally
site.Dispose()
End Try
Console.Write("Press ENTER to continue...")
Console.ReadLine()
End Sub
End Module
using System;
using Microsoft.SharePoint;
namespace Test
{
class ConsoleApp
{
static void Main(string[] args)
{
using (SPSite site = new SPSite("https://localhost"))
{
using (SPWeb web = site.OpenWeb())
{
string ctName = "Announcement";
SPContentType contentType = web.ContentTypes[ctName];
if (contentType != null)
{
for (int i = 0; i < contentType.FieldLinks.Count; i++)
{
Console.WriteLine("Field.InternalName = {0}",
contentType.Fields[i].InternalName);
Console.WriteLine("FieldLink.Name = {0}",
contentType.FieldLinks[i].Name);
Console.WriteLine();
}
}
}
}
Console.Write("Press ENTER to continue...");
Console.ReadLine();
}
}
}
應用程式是列印下列輸出到主控台。
Field.InternalName = ContentType
FieldLink.Name = ContentType
Field.InternalName = Title
FieldLink.Name = Title
Field.InternalName = Body
FieldLink.Name = Body
Field.InternalName = Expires
FieldLink.Name = Expires
Press ENTER to continue...
請參閱
參照
Microsoft.SharePoint namespace