====== FontSize ======
Property of [[:scripting:api:style:start|IStyle]]
===== Description =====
Font Size property
===== Property type =====
Read-Write Property of type **[[scripting:api:data-type:long|long]]**
===== Syntax =====
==== JavaScript ====
var nSize = Style.FontSize;
Style.FontSize = nSize;
==== Visual Basic Script ====
nSize = Style.FontSize
Style.FontSize = nSize
==== C++ ====
long nSize;
HRESULT hr = Style.get_FontSize(&nSize);
hr = Style.put_FontSize(nSize);
===== See Also =====
[[:scripting:api:style:start|IStyle]]
~~NOTOC~~