[ValidationOption(ValidationOption.Optional)]
[Description("This is the description which appears in the Property Browser")]
[Category("This is the category which will be displayed in the Property Browser")]
[Browsable(true)]
[DesignerSerializationVisibility(DesignerSerializationVisibility.Visible)]
public string UserText
{
get
{
return ((string)(base.GetValue(Activity1.UserTextProperty)));
}
set
{
base.SetValue(Activity1.UserTextProperty, value);
}
}
public static DependencyProperty StrOutProperty = System.Workflow.ComponentModel.DependencyProperty.Register("StrOut", typeof(string), typeof(Activity1));
[ValidationOption(ValidationOption.Optional)]
[Description("This is the description which appears in the Property Browser")]
[Category("This is the category which will be displayed in the Property Browser")]
[Browsable(true)]
[DesignerSerializationVisibility(DesignerSerializationVisibility.Visible)]
public string StrOut
