34 lines
489 B
Markdown
34 lines
489 B
Markdown
# Font (Get Method)
|
||||
|
|
|
|||
|
|
Gets the value of "Font" property.
|
|||
|
|
|
|||
|
|
```
|
|||
|
|
string Font() const
|
|||
|
|
|
|||
|
|
```
|
|||
|
|
|
|||
|
|
Return Value
|
|||
|
|
|
|||
|
|
Value of "Font" property of the object assigned to the class instance. If there is no object assigned, it returns "".
|
|||
|
|
|
|||
|
|
# Font (Set Method)
|
|||
|
|
|
|||
|
|
Sets new value for "Font" property.
|
|||
|
|
|
|||
|
|
```
|
|||
|
|
bool Font(
|
|||
|
|
string font // property value
|
|||
|
|
)
|
|||
|
|
|
|||
|
|
```
|
|||
|
|
|
|||
|
|
Parameters
|
|||
|
|
|
|||
|
|
font
|
|||
|
|
|
|||
|
|
[in] New value for "Font" property.
|
|||
|
|
|
|||
|
|
Return Value
|
|||
|
|
|
|||
|
|
true - success, false - cannot change the property.
|