Aracılığıyla paylaş


WorkbookBase.Permission Özellik

Tanım

Çalışma kitabındaki izin ayarlarını temsil eden bir Microsoft.Office.Core.Permission nesnesi alır.

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

Özellik Değeri

Çalışma kitabındaki izin ayarlarını temsil eden bir Microsoft.Office.Core.Permission nesnesi.

Örnekler

Aşağıdaki kod örneği, geçerli çalışma kitabında izinler etkinleştirilmemişse iletiyi görüntülemek için özelliğini kullanır Permission .

Bu örnek, belge düzeyinde özelleştirme içindir

private void DisplayPermission()
{
    if (!this.Permission.Enabled)
    {
        MessageBox.Show("Permissions are not enabled on the current workbook.");
    }
}
Private Sub DisplayPermission()
    If Not Me.Permission.Enabled Then
        MsgBox("Permissions are not enabled on the current workbook.")
    End If
End Sub

Şunlara uygulanır