View 類別
指定清單檢視。
繼承階層架構
System.Object
Microsoft.SharePoint.Client.ClientObject
Microsoft.SharePoint.Client.View
命名空間: Microsoft.SharePoint.Client
組件: Microsoft.SharePoint.Client.Silverlight (在 Microsoft.SharePoint.Client.Silverlight.dll 中); Microsoft.SharePoint.Client.Phone (在 Microsoft.SharePoint.Client.Phone.dll 中) Microsoft.SharePoint.Client (在 Microsoft.SharePoint.Client.dll 中)
語法
'宣告
Public Class View _
Inherits ClientObject
'用途
Dim instance As View
public class View : ClientObject
備註
使用List類別DefaultView屬性傳回清單或**GetView()方法傳回指定的檢視的預設檢視。使用Web類別GetViewFromUrl()方法傳回網站,請在清單檢視並使用View()**屬性的ViewFieldCollection課程,好讓上層檢視欄位的集合。否則,以傳回的清單檢視的集合或檢視的檢視的上層集合使用ViewsList類別屬性。
使用索引從檢視的集合傳回單一檢視。例如,如果集合指派給一個名為collViews變數,使用 C# collViews[index]或 Visual Basic, index號碼在哪裡索引的檢視中的集合,檢視的名稱,或 GUID collViews(index)檢視。
範例
此範例中的程式碼訂單以遞減的英文字母順序指定網站的 [工作] 清單上的項目。
using System;
using Microsoft.SharePoint.Client;
namespace Microsoft.SDK.SharePointFoundation.Samples
{
class ViewExample
{
static void Main()
{
string siteUrl = "http://MyServer/sites/MySiteCollection";
ClientContext clientContext = new ClientContext(siteUrl);
Web site = clientContext.Web;
List targetList = site.Lists.GetByTitle("Tasks");
ViewCollection collView = targetList.Views;
View targetView = collView.GetByTitle("All Tasks");
string strQuery = "<OrderBy><FieldRef Name=\'Title\' Ascending=\'False\' /></OrderBy>";
targetView.ViewQuery = strQuery;
targetView.Update();
clientContext.ExecuteQuery();
Console.WriteLine("Tasks list ordered in descending alphabetic order.");
}
}
}
執行緒安全
這類型的任何公用 static (共用 於 Visual Basic 中) 成員是安全執行緒。不保證任何執行個體成員都是安全執行緒。