4 writes to labelRatio
System.Windows.Forms (4)
winforms\Managed\System\WinForms\PropertyGridInternal\PropertyGridView.cs (4)
2353
labelRatio
= ((double)widthPS / (double) (pos - startPS));
4535
labelRatio
= Math.Max(Math.Min(labelRatio, 9), 1.1);
4553
labelRatio
= ((double) GetOurSize().Width / (double) (oldWidth - ptOurLocation.X));
4900
labelRatio
= ((double) GetOurSize().Width / (double) (labelWidth - ptOurLocation.X));
5 references to labelRatio
System.Windows.Forms (5)
winforms\Managed\System\WinForms\PropertyGridInternal\PropertyGridView.cs (5)
1629
return(int)(InternalLabelWidth * (
labelRatio
- 1));
4535
labelRatio = Math.Max(Math.Min(
labelRatio
, 9), 1.1);
4536
labelWidth = ptOurLocation.X + (int) ((double)size.Width /
labelRatio
);
4561
Debug.WriteLineIf(CompModSwitches.DebugGridView.TraceVerbose, "\tlabelRatio :" + (
labelRatio
).ToString(CultureInfo.InvariantCulture));
4897
labelWidth = ptOurLocation.X + (int) ((double)size.Width /
labelRatio
);