procedure ClearHighlight;
Mirrors TPdfView.ClearHighlight. The TPdfView component forwards the call to its underlying Pdf instance and refreshes the view if the call mutates the document.
All semantic notes from TPdfView.ClearHighlight apply identically here; the only difference is that you address the operation through the visual control instead of the model object.
Коли TPdfView прив’язано до зовнішнього TPdf (через PdfView1.Pdf := Pdf1), читання цього елемента повертає ті самі дані, що й Pdf1.ClearHighlight; коли TPdfView володіє власним внутрішнім TPdf, цей елемент є єдиним відкритим засобом доступу
UpdatePage у поданні; задання їх через базовий TPdf — ні — у такому разі не забудьте викликати PdfView1.UpdatePage вручну.PdfView1.Active має значення False.
if PdfView1.Active then
Memo1.Lines.Add('ClearHighlight = ' + VarToStr(PdfView1.ClearHighlight));