Recent Entries
Search Blog
Be our friend
New API Typography
Did you know that the DocuSign API supports 12 different fonts, 10 colors, 17 sizes, and 3 styles? Thats more than 60,000 combinations you can use to make your Envelopes look just as you like!
Here is an overview of the different typography options available.
Fonts
Sizes
Colors
Styles
Setting these options are on an individual Tab basis. To make a Verdana, large, bright blue, bolded and italicized Fullname Tab, in PHP you would write:
$tab = new Tab();
$tab->Type = TabTypeCode::FullName;
$tab->DocumentID = "1";
$tab->PageNumber = "1"
$tab->RecipientID = "1";
$tab->XPosition = "10";
$tab->YPosition = "10";
$tab->Font = "Verdana";
$tab->Bold = true;
$tab->Italic = true;
$tab->FontColor = "BrightBlue";
$tab->FontSize = "Size48";
#Basic FullName Anchor tab
tab = Docusign::Tab.new.tap do |t|
t.documentID = 1
t.pageNumber = 1
t.recipientID = 1
t.type = Docusign::TabTypeCode::FullName
t.font = "Verdana"
t.bold = true
t.italic = true
t.fontColor = "BrightBlue"
t.fontSize = "Size48"
end
And your result is:


