GH_WindowsControlUtilFixTextRenderingDefault Method (ControlControlCollection) | 
 
 Recursively sets the UseCompatibleTextRendering value to False on each control.
 
 
    Namespace: 
   Grasshopper.GUI
    Assembly:
   Grasshopper (in Grasshopper.dll)
Syntaxpublic static void FixTextRenderingDefault(
	ControlControlCollection iControls
)
Public Shared Sub FixTextRenderingDefault ( 
	iControls As ControlControlCollection
)
Parameters
- iControls
 - Type: System.Windows.FormsControlControlCollection
 
Examples
 This example shows how to use this function to modify all the controls on a windows Form.
 
Dim frm As New MyVerySpecialForm()
Grasshopper.GUI.GH_WindowsControlUtil.FixTextRenderingDefault(frm.Controls)
frm.Show()
See Also