TPdfView koji prosljeđuje na TPdf.RemoveObjectprocedure RemoveObject(Index: Integer; DestroyObject: Boolean = True);
Mirrors TPdf.RemoveObject. The TPdfView component forwards the call to its underlying Pdf instance and refreshes the view if the call mutates the document.
Sve semantičke napomene iz TPdf.RemoveObject apply identically here; the only difference is that you address the operation through the visual control instead of the model object.
Kada je TPdfView povezan s vanjskim TPdf (dodjeljivanjem PdfView1.Pdf := Pdf1), čitanje ovog čana vraća iste podatke kao Pdf1.RemoveObject; kada TPdfView posjeduje svoj interni TPdf, ovaj član je jedini javni pristupnik.
UpdatePage na prikazu; postavljanje kroz temeljni TPdf ne — ne zaboravite ručno pozvati PdfView1.UpdatePage u tom slučaju.PdfView1.Active False.
if PdfView1.Active then
Memo1.Lines.Add('RemoveObject = ' + VarToStr(PdfView1.RemoveObject));