UpdateDocumentProperties
IPresentationInfo.UpdateDocumentProperties method
Обновляет свойства привязанной презентации.
public void UpdateDocumentProperties(IDocumentProperties documentProperties)
Параметр | Тип | Описание |
---|---|---|
documentProperties | IDocumentProperties | Свойства документаIDocumentProperties |
Примеры
В этом примере показано, как вызвать методUpdateDocumentProperties
для обновить свойства документа, возвращаемые вызовом методаReadDocumentProperties
.
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");
Смотрите также
- interface IDocumentProperties
- interface IPresentationInfo
- пространство имен Aspose.Slides
- сборка Aspose.Slides