• Jobs
  • About Us
  • professionals
    • Home
    • Jobs
    • Courses and challenges
  • business
    • Home
    • Post vacancy
    • Our process
    • Pricing
    • Assessments
    • Payroll
    • Blog
    • Sales
    • Salary Calculator

0

278
Views
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.

about 3 years ago · Juan Pablo Isaza
1 answers
Answer question

0

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

about 3 years ago · Juan Pablo Isaza Report
Answer question
Find remote jobs

Discover the new way to find a job!

Top jobs
Top job categories
Business
Post vacancy Pricing Our process Sales
Legal
Terms and conditions Privacy policy
© 2025 PeakU Inc. All Rights Reserved.

Andres GPT

Recommend me some offers
I have an error