4 overrides of Text
System.Workflow.Activities (1)
Designers\StateDesigner.cs (1)
274
public override string
Text
System.Workflow.ComponentModel (1)
AuthoringOM\Design\SequentialWorkflowRootDesigner.cs (1)
56
public override string
Text
System.WorkflowServices (2)
System\Workflow\Activities\ReceiveActivityDesigner.cs (1)
34
public override string
Text
System\Workflow\Activities\SendActivityDesigner.cs (1)
35
public override string
Text
3 writes to Text
System.Workflow.ComponentModel (3)
AuthoringOM\Design\ActivityDesigner.cs (3)
1131
this.
Text
= (!String.IsNullOrEmpty(activity.Name)) ? activity.Name : activity.GetType().Name;
1796
this.
Text
= Activity.Name;
2231
this.
Text
= Activity.Name;
22 references to Text
System.Workflow.Activities (3)
Designers\StateDesigner.cs (1)
278
string text = base.
Text
;
Designers\StateDesigner.Layouts.cs (2)
848
string text = this.ActivityDesigner.
Text
;
860
string text = this.ActivityDesigner.
Text
;
System.Workflow.ComponentModel (17)
AuthoringOM\Design\ActivityDesigner.cs (8)
532
if (String.IsNullOrEmpty(
Text
))
1674
if (!String.IsNullOrEmpty(
Text
) && !TextRectangle.Size.IsEmpty)
1677
ActivityDesignerPaint.DrawText(e.Graphics, font,
Text
, TextRectangle, StringAlignment.Near, e.AmbientTheme.TextQuality, e.DesignerTheme.ForegroundBrush);
1708
if (!String.IsNullOrEmpty(
Text
))
1711
Size actualTextSize = ActivityDesignerPaint.MeasureString(e.Graphics, e.DesignerTheme.BoldFont,
Text
, StringAlignment.Center, Size.Empty);
1713
requestedLineSize.Width /=
Text
.Length;
1714
requestedLineSize.Width += ((requestedLineSize.Width %
Text
.Length) > 0) ? 1 : 0;
1715
requestedLineSize.Width *= Math.Min(
Text
.Length, ActivityDesigner.MaximumCharsPerLine - 1);
AuthoringOM\Design\CompositeActivityDesigner.cs (6)
324
if (String.IsNullOrEmpty(
Text
))
339
requestedLineSize.Width /=
Text
.Length;
340
requestedLineSize.Width += ((requestedLineSize.Width %
Text
.Length) > 0) ? 1 : 0;
341
requestedLineSize.Width *= Math.Min(
Text
.Length, CompositeActivityDesigner.MaximumCharsPerLine - 1);
1289
if (!String.IsNullOrEmpty(
Text
))
1290
this.actualTextSize = ActivityDesignerPaint.MeasureString(e.Graphics, e.DesignerTheme.BoldFont,
Text
, StringAlignment.Center, Size.Empty);
AuthoringOM\Design\FreeFormDesigner.cs (1)
1183
transaction = designerHost.CreateTransaction(DR.GetString(DR.ZOrderUndoDescription, activityDesigner.
Text
));
AuthoringOM\Design\MessageFilters\ResizingMessageFilter.cs (1)
246
this.designerTransaction = designerHost.CreateTransaction(DR.GetString(DR.ResizeUndoDescription, designer.
Text
));
AuthoringOM\Design\StructuredCompositeActivityDesigner.cs (1)
216
return (!String.IsNullOrEmpty(
Text
) && !TextRectangle.Size.IsEmpty && Views.Count > 1);
System.WorkflowServices (2)
System\Workflow\Activities\ReceiveActivityDesigner.cs (1)
46
return base.
Text
;
System\Workflow\Activities\SendActivityDesigner.cs (1)
47
return base.
Text
;