共用方式為


SPView.ProjectedFields property

取得或設定ProjectedFields項目的 XML 檢視中,會條列聯結的外部索引清單中的欄位。

Namespace:  Microsoft.SharePoint
Assembly:  Microsoft.SharePoint (in Microsoft.SharePoint.dll)

Syntax

'宣告
Public Property ProjectedFields As String
    Get
    Set
'用途
Dim instance As SPView
Dim value As String

value = instance.ProjectedFields

instance.ProjectedFields = value
public string ProjectedFields { get; set; }

Property value

Type: System.String
ProjectedFields項目 XML。

備註

預計的每個欄位會以欄位項目。可被包含的欄位的最大數目被定義為主要] 清單中允許欄位的最大數目與已在主清單中的欄位數之間的差異。

Examples

下列範例顯示如何將額外的欄位新增到查詢所傳回的結果。List屬性的值是加入外部索引清單的別名。別名被定義在Join Element (Query)中。ShowField屬性必須設定為外部索引欄位的內部名稱。Type永遠是 '查閱'。

<ProjectedFields>
  <Field
    Name=’CustomerCity’
    Type=’Lookup’
    List=’customerCities’
    ShowField=’Title’ />
</ProjectedFields>

請參閱

參照

SPView class

SPView members

Microsoft.SharePoint namespace