1 write to textSize
System.Workflow.ComponentModel (1)
AuthoringOM\Design\SequentialWorkflowHeaderFooter.cs (1)
196this.textSize = ActivityDesignerPaint.MeasureString(e.Graphics, font, Text, StringAlignment.Center, Size.Empty);
4 references to textSize
System.Workflow.ComponentModel (4)
AuthoringOM\Design\SequentialWorkflowHeaderFooter.cs (3)
139bounds.Size = this.textSize; 140bounds.X = designerBounds.Left + designerBounds.Width / 2 - this.textSize.Width / 2; 141bounds.Y = (this.isHeader) ? designerBounds.Top + margin.Height : designerBounds.Bottom - margin.Height - this.textSize.Height;
AuthoringOM\Design\SequentialWorkflowRootDesigner.cs (1)
402headerBarRectangle.Height = Math.Max(2 * WorkflowTheme.CurrentTheme.AmbientTheme.Margin.Height + base.textSize.Height, MinHeaderBarHeight);