2 writes to actualTextSize
System.Workflow.ComponentModel (2)
AuthoringOM\Design\CompositeActivityDesigner.cs (2)
1290
this.
actualTextSize
= ActivityDesignerPaint.MeasureString(e.Graphics, e.DesignerTheme.BoldFont, Text, StringAlignment.Center, Size.Empty);
1292
this.
actualTextSize
= Size.Empty;
4 references to actualTextSize
System.Workflow.ComponentModel (4)
AuthoringOM\Design\CompositeActivityDesigner.cs (4)
338
Size requestedLineSize = this.
actualTextSize
;
344
textSize.Width = Math.Min(maxAvailableWidth, this.
actualTextSize
.Width);
348
int textLines = this.
actualTextSize
.Width / textSize.Width;
349
textLines += ((this.
actualTextSize
.Width % textSize.Width) > 0) ? 1 : 0;