Company logo
  • Empleos
  • Bootcamp
  • Acerca de nosotros
  • Para profesionales
    • Inicio
    • Empleos
    • Cursos y retos
    • Preguntas
    • Profesores
    • Bootcamp
  • Para empresas
    • Inicio
    • Nuestro proceso
    • Planes
    • Pruebas
    • Nómina
    • Blog
    • Comercial
    • Calculadora

0

110
Vistas
Using VBA how do I set the font size of a field in a PDF form?

I have a pdf form and Acrobat Pro installed on my machine. In MS Access I can write VBA code to open the form and fill out the fields. But I cannot figure out how to adjust the font size of a field (or other properties like color) using VBA.

Here is a snippet:

Dim oAVDoc As Object, oPDDoc As Object
Dim oJso As Object, oFld As Object

Set oAVDoc = CreateObject("AcroExch.AVDoc")

oAVDoc.Open("C:\Temp\test.pdf", "")

Set oPDDoc = oAVDoc.GetPDDoc

Set oJso = oPDDoc.GetJSObject

Set oFld = oJso.getField("TestFieldName")

oFld.Value = "This is the new value." '<-- works fine

oFld.FontSize = 14 '<-- "Object doesn't support this property or method"
oFld.Color = "red" '<-- also does not work

I figure there are probably javascript object properties for these, but I can't find any documentation on what they might be.

Thanks in advance.

7 months ago · Juan Pablo Isaza
1 Respuestas
Responde la pregunta

0

Use
oFld.textSize = 14
instead of FontSize (see also documentation)

7 months ago · Juan Pablo Isaza Denunciar
Responde la pregunta
Encuentra empleos remotos