Sets the font size and style for the value text of a component within a dialog.
planetcnc.dlg_comp_font(component, font_size=15, bold=True)
#! /usr/bin/env python import planetcnc # Set font size to 18 and enable bold text planetcnc.dlg_comp_font(my_component, 18, True) print("Component font updated.")