MS\Internal\Documents\Application\DocumentPropertiesDialog.cs (41)
55SetTextProperty(_summaryTab, SR.DocumentPropertiesDialogSummaryLabel);
56SetTextProperty(_titleLabel, SR.DocumentPropertiesDialogTitleLabel);
57SetTextProperty(_authorLabel, SR.DocumentPropertiesDialogAuthorLabel);
58SetTextProperty(_subjectLabel, SR.DocumentPropertiesDialogSubjectLabel);
59SetTextProperty(_descriptionLabel, SR.DocumentPropertiesDialogDescriptionLabel);
60SetTextProperty(_keywordsLabel, SR.DocumentPropertiesDialogKeywordsLabel);
61SetTextProperty(_categoryLabel, SR.DocumentPropertiesDialogCategoryLabel);
62SetTextProperty(_languageLabel, SR.DocumentPropertiesDialogLanguageLabel);
63SetTextProperty(_contentLabel, SR.DocumentPropertiesDialogContentLabel);
64SetTextProperty(_statusLabel, SR.DocumentPropertiesDialogStatusLabel);
65SetTextProperty(_versionLabel, SR.DocumentPropertiesDialogVersionLabel);
66SetTextProperty(_identifierLabel, SR.DocumentPropertiesDialogIdentifierLabel);
67SetTextProperty(_okButton, SR.DocumentPropertiesDialogOkButtonLabel);
68SetTextProperty(_infoTab, SR.DocumentPropertiesDialogInfoLabel);
69SetTextProperty(_sizeLabel, SR.DocumentPropertiesDialogSizeLabel);
70SetTextProperty(_documentDetailBox, SR.DocumentPropertiesDialogDocumentDetailBoxLabel);
71SetTextProperty(_lastSavedLabel, SR.DocumentPropertiesDialogLastSavedByLabel);
72SetTextProperty(_revisionLabel, SR.DocumentPropertiesDialogRevisionLabel);
73SetTextProperty(_documentCreatedLabel, SR.DocumentPropertiesDialogDocumentCreatedLabel);
74SetTextProperty(_documentModifiedLabel, SR.DocumentPropertiesDialogDocumentModifiedLabel);
75SetTextProperty(_documentPrintedLabel, SR.DocumentPropertiesDialogDocumentPrintedLabel);
76SetTextProperty(_fileSystemBox, SR.DocumentPropertiesDialogFileSystemBoxLabel);
77SetTextProperty(_fileCreatedLabel, SR.DocumentPropertiesDialogFileCreatedLabel);
78SetTextProperty(_fileModifiedLabel, SR.DocumentPropertiesDialogFileModifiedLabel);
79SetTextProperty(_fileAccessedLabel, SR.DocumentPropertiesDialogFileAccessedLabel);
95SetTextProperty(_author, DocumentProperties.Current.CoreProperties.Creator);
96SetTextProperty(_category, DocumentProperties.Current.CoreProperties.Category);
97SetTextProperty(_content, DocumentProperties.Current.CoreProperties.ContentType);
98SetTextProperty(_description, DocumentProperties.Current.CoreProperties.Description);
102SetTextProperty(_documentType, DocumentProperties.Current.CoreProperties.ContentType);
103SetTextProperty(_identifier, DocumentProperties.Current.CoreProperties.Identifier);
104SetTextProperty(_keywords, DocumentProperties.Current.CoreProperties.Keywords);
105SetTextProperty(_lastSaved, DocumentProperties.Current.CoreProperties.LastModifiedBy);
106SetTextProperty(_revision, DocumentProperties.Current.CoreProperties.Revision);
107SetTextProperty(_status, DocumentProperties.Current.CoreProperties.ContentStatus);
108SetTextProperty(_subject, DocumentProperties.Current.CoreProperties.Subject);
109SetTextProperty(_title, DocumentProperties.Current.CoreProperties.Title);
110SetTextProperty(_version, DocumentProperties.Current.CoreProperties.Version);
111SetTextProperty(_language, DocumentProperties.Current.CoreProperties.Language);
117SetTextProperty(_size, FormatFileSize(DocumentProperties.Current.FileSize)); //SecurityCritical
119SetTextProperty(_filename, DocumentProperties.Current.Filename);