property FontAscent[Index: Integer; FontSize: Single]: Single;
Mirrors TPdf.FontAscent. The TPdfView component forwards the call to its underlying Pdf instancia y actualiza la vista si la llamada modifica el documento
Todas las notas semánticas de TPdf.FontAscent se aplican aquí de la misma forma; la única diferencia es que accedes a la operación a través del control visual en lugar de hacerlo mediante el objeto del modelo
When TPdfView is bound to an external TPdf (assigning PdfView1.Pdf := Pdf1, al leer este miembro se devuelven los mismos datos que Pdf1.FontAscent; cuando TPdfView posee su TPdf interno, este miembro es el único acceso público
UpdatePage en la vista; hacerlo a través del TPdf subyacente no lo hace — recuerda llamar manualmente a PdfView1.UpdatePage en ese casoPdfView1.Active is False.
if PdfView1.Active then
Memo1.Lines.Add('FontAscent = ' + VarToStr(PdfView1.FontAscent));