5 references to MaximumDescriptionLength
System.Workflow.ComponentModel (5)
AuthoringOM\Design\ActivityDesigner.cs (5)
780
tipText = (tipText.Length >
MaximumDescriptionLength
) ? tipText.Substring(0,
MaximumDescriptionLength
) + "..." : tipText;
801
int maxRulesLength = 3 * (MaximumIdentifierLength +
MaximumDescriptionLength
);
810
ruleDescription = (ruleDescription.Length >
MaximumDescriptionLength
) ? ruleDescription.Substring(0,
MaximumDescriptionLength
) + "..." : ruleDescription;