怎样取得Word、Execl文档文件属性中摘要项中的标题,该标题一般和文件名一致,但也可以不一样,谢谢(100分)

  • 主题发起人 主题发起人 zjjxxw
  • 开始时间 开始时间
Z

zjjxxw

Unregistered / Unconfirmed
GUEST, unregistred user!
因为特殊需要,我很有必要知道怎样取得Word、Execl文档文件属性中,摘要项中的标题(注意不是常规项的名称),该标题一般和文件名一致,但也可以不一样,谢谢大家!
 
应该在文件头里有
 
procedure TForm1.Button1Click(Sender: TObject);<br>var CustomProperties : OLEVariant;<br> &nbsp; CustomProperty &nbsp; : OLEVariant;<br>begin<br> &nbsp;memo1.Text:='';<br> &nbsp;try<br> &nbsp; &nbsp;CustomProperties := wordapp.ActiveDocument.CustomDocumentProperties;<br> &nbsp; &nbsp;CustomProperty := CustomProperties.Item [edit1.Text];<br> &nbsp; &nbsp;memo1.Text := CustomProperty.Value;<br> &nbsp;except<br> &nbsp;end;<br><br>end;
 
接受答案了.
 
后退
顶部