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