UniPDFFrame1(72)

发布时间 2023-12-14 20:05:43作者: 涂磊
procedure TfrmSysDeptAdd.UniPDFFrame1FrameLoaded(Sender: TObject);
begin
  // download button
  UniSession.AddJS (UniPDFFrame1.JSName + '.iframe.contentWindow.document.'
       + 'getElementById ("download").style.display = "none"');
  UniSession.AddJS (UniPDFFrame1.JSName + '.iframe.contentWindow.document.'
       + 'getElementById ("secondaryDownload").style.display = "none"');

  // print button
  UniSession.AddJS (UniPDFFrame1.JSName + '.iframe.contentWindow.document.'
       + 'getElementById ("print").style.display = "none"');
  UniSession.AddJS (UniPDFFrame1.JSName + '.iframe.contentWindow.document.'
       + 'getElementById ("secondaryPrint").style.display = "none"');

  // open file button
  UniSession.AddJS (UniPDFFrame1.JSName + '.iframe.contentWindow.document.'
       + 'getElementById ("openFile").style.display = "none"');
  UniSession.AddJS (UniPDFFrame1.JSName + '.iframe.contentWindow.document.'
       + 'getElementById ("secondaryOpenFile").style.display = "none"');

  // view bookmark button
  UniSession.AddJS (UniPDFFrame1.JSName + '.iframe.contentWindow.document.'
       + 'getElementById ("viewBookmark").style.display = "none"');
  UniSession.AddJS (UniPDFFrame1.JSName + '.iframe.contentWindow.document.'
       + 'getElementById ("secondaryViewBookmark").style.display = "none"');

  // documentProperties
  UniSession.AddJS (UniPDFFrame1.JSName + '.iframe.contentWindow.document.'
       + 'getElementById ("documentProperties").style.display = "none"');

  // presentationMode
  UniSession.AddJS (UniPDFFrame1.JSName + '.iframe.contentWindow.document.'
       + 'getElementById ("presentationMode").style.display = "none"');

  // secondaryPresentationMode
  UniSession.AddJS (UniPDFFrame1.JSName + '.iframe.contentWindow.document.'
       + 'getElementById ("secondaryPresentationMode").style.display = "none"');
end;