SPBuiltInFieldId._Comments-Feld
Gibt ein Feld, das Kommentare enthält, die dem angegebenen SharePoint Foundation -Objekt zugeordnet sind.
Namespace: Microsoft.SharePoint
Assembly: Microsoft.SharePoint (in Microsoft.SharePoint.dll)
Syntax
'Declaration
Public Shared ReadOnly _Comments As Guid
'Usage
Dim value As Guid
value = SPBuiltInFieldId._Comments
public static readonly Guid _Comments
Beispiele
SPSite oSiteCollection = SPContext.Current.Site;
SPWebCollection collWebsites = oSiteCollection.AllWebs;
foreach (SPWeb oWebsite in collWebsites)
{
SPListCollecion collLists = oWebsite.Lists;
foreach (SPList oList in lists
{
if (oList.BaseType == SPBaseType.DocumentLibrary)
{
SPDocumentLibrary oDocumentLibrary = (SPDocumentLibrary)oList;
if (!oDocumentLibrary.IsCatalog && oList.BaseTemplate !=
SPListTemplateType.XMLForm)
{
// get the value in the '_Comments' column
// of the object
SPField docComments =
oDocumentLibrary.Fields[SPBuiltInFieldId._Comments);
}
}
oWebsite.Dispose();
}
Hinweis
Bestimmte Objekte, die IDisposable -Schnittstelle implementieren, und Sie müssen vermeiden, diese Objekte im Arbeitsspeicher beibehalten, wenn sie nicht mehr benötigt werden. Informationen zu bewährten Codierung finden Sie unter Disposing Objects.