共用方式為


WorkbookBase.ServerPolicy 屬性

定義

取得物件,該物件表示針對儲存在執行 Microsoft Office SharePoint Server 之伺服器上的活頁簿所指定的原則。

public:
 property Microsoft::Office::Core::ServerPolicy ^ ServerPolicy { Microsoft::Office::Core::ServerPolicy ^ get(); };
public Microsoft.Office.Core.ServerPolicy ServerPolicy { get; }
member this.ServerPolicy : Microsoft.Office.Core.ServerPolicy
Public ReadOnly Property ServerPolicy As ServerPolicy

屬性值

Microsoft.Office.Core.ServerPolicy 物件,代表針對儲存在執行 SharePoint Server 之伺服器上的活頁簿所指定的原則。

備註

下列程式代碼範例會擷取與目前活頁簿相關聯的資訊管理原則,並顯示原則名稱、描述和語句。 若要執行此範例,您必須將活頁簿發佈至 Microsoft Office Sharepoint Server 網站,並在網站中定義資訊管理原則。

此範例適用於檔層級自定義。

private void GetInformationManagementPolicy()
{
    Office.ServerPolicy policy = this.ServerPolicy;
    MessageBox.Show("Information Management Policy: " + policy.Name
        + "\r\nDescription: " + policy.Description
        + "\r\nStatement: " + policy.Statement);
}
Private Sub GetInformationManagementPolicy()
    Dim policy As Office.ServerPolicy = Me.ServerPolicy
    MessageBox.Show("Information Management Policy: " + policy.Name _
        + vbCrLf + "Description: " + policy.Description _
        + vbCrLf + "Statement: " + policy.Statement)
End Sub

適用於