WorkbookBase.RemoveDocumentInformation, méthode
Supprime toutes les informations du type spécifié du classeur.
Espace de noms : Microsoft.Office.Tools.Excel
Assembly : Microsoft.Office.Tools.Excel.v4.0.Utilities (dans Microsoft.Office.Tools.Excel.v4.0.Utilities.dll)
Syntaxe
'Déclaration
Public Sub RemoveDocumentInformation ( _
removeDocInfoType As XlRemoveDocInfoType _
)
public void RemoveDocumentInformation(
XlRemoveDocInfoType removeDocInfoType
)
Paramètres
- removeDocInfoType
Type : Microsoft.Office.Interop.Excel.XlRemoveDocInfoType
Une des valeurs Microsoft.Office.Interop.Excel.XlRemoveDocInfoType qui spécifie le type d'informations à supprimer.
Exemples
L'exemple de code suivant supprime toutes les propriétés de classeur du classeur actuel.
Cet exemple illustre une personnalisation au niveau du document.
Private Sub RemoveWorkbookProperties()
Me.RemoveDocumentInformation( _
Excel.XlRemoveDocInfoType.xlRDIDocumentProperties)
End Sub
private void RemoveWorkbookProperties()
{
this.RemoveDocumentInformation(
Excel.XlRemoveDocInfoType.xlRDIDocumentProperties);
}
Sécurité .NET Framework
- Confiance totale accordée à l'appelant immédiat. Ce membre ne peut pas être utilisé par du code d'un niveau de confiance partiel. Pour plus d'informations, consultez Utilisation de bibliothèques à partir de code d'un niveau de confiance partiel.