UpdateDocumentProperties

PresentationInfo.UpdateDocumentProperties method

Обновляет свойства привязанной презентации.

public void UpdateDocumentProperties(IDocumentProperties documentProperties)

Примеры

В этом примере показано, как вызывать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");

Смотрите также