UpdateDocumentProperties
IPresentationInfo.UpdateDocumentProperties method
Met à jour les propriétés de la présentation liée.
public void UpdateDocumentProperties(IDocumentProperties documentProperties)
Paramètre | Taper | La description |
---|---|---|
documentProperties | IDocumentProperties | Propriétés du documentIDocumentProperties |
Exemples
Cet exemple montre comment appeler leUpdateDocumentProperties
méthode to met à jour les propriétés du document renvoyées par l’appel de laReadDocumentProperties
méthode.
IPresentationInfo info = PresentationFactory.Instance.GetPresentationInfo("pres.pptx");
IDocumentProperties props = info.ReadDocumentProperties();
props.Subject = "New subject";
props.LastSavedTime = DateTime.UtcNow;
info.UpdateDocumentProperties(props);
info.WriteBindedPresentation("new_pres.pptx");
Voir également
- interface IDocumentProperties
- interface IPresentationInfo
- espace de noms Aspose.Slides
- Assemblée Aspose.Slides