Setting and getting vertical kerning value

Dear,

Is it possible setting and getting vertical kerning values like
setKerningForPair(fontMasterId, leftKey, rightKey, value [, direction = LTR])
kerningForPair (fontMasterId, leftKey, rightKey [, direction = LTR])?

still not implemented?
Though I tried searching vertical kerning related topics, I couldn’t find it yet.

Thanks in advance.

You should be able to add the writing direction (RTLTTB) as the last argument:

font.setKerningForPair(fontMasterId, leftKey, rightKey, value, direction = RTLTTB)
1 Like

great! Thanks a lot!