2 overrides of PropertyType
System.Activities.Presentation (2)
System.Activities.Presentation\System\Activities\Presentation\Base\Core\Internal\PropertyEditing\Model\ModelPropertyEntry.cs (1)
116public override Type PropertyType
System.Activities.Presentation\System\Activities\Presentation\Base\Core\Internal\PropertyEditing\Model\ModelPropertyIndexer.cs (1)
133public override Type PropertyType
13 references to PropertyType
System.Activities.Presentation (13)
System.Activities.Presentation\System\Activities\Presentation\Base\Core\Internal\PropertyEditing\Editors\PropertyValueToStandardValuesConverter.cs (1)
113if (EditorUtilities.IsNullableEnumType(_property.PropertyType))
System.Activities.Presentation\System\Activities\Presentation\Base\Core\Internal\PropertyEditing\Model\ModelPropertyEntryBase.cs (1)
73return typeof(IList).IsAssignableFrom(this.PropertyType);
System.Activities.Presentation\System\Activities\Presentation\Base\Core\Internal\PropertyEditing\Model\ModelPropertyValue.cs (5)
204if (this.ParentProperty.PropertyType == typeof(string)) 221if (stringToConvert != null && typeof(string).Equals(this.ParentProperty.PropertyType)) 231else if (EditorUtilities.IsNullableEnumType(this.ParentProperty.PropertyType) && stringToConvert.Equals(EditorUtilities.NullString, StringComparison.Ordinal)) 260if (typeof(IList).IsAssignableFrom(this.ParentProperty.PropertyType)) 264else if (EditorUtilities.IsNullableEnumType(this.ParentProperty.PropertyType))
System.Activities.Presentation\System\Activities\Presentation\Base\Core\PropertyEditing\PropertyContainer.cs (4)
681return property != null && property.PropertyType != null && property.PropertyType.IsEnum && 682ExtensibilityAccessor.GetAttribute<FlagsAttribute>(property.PropertyType) != null; 687Type propertyType = this.PropertyEntry.PropertyType;
System.Activities.Presentation\System\Activities\Presentation\Base\Core\PropertyEditing\propertyentry.cs (1)
161predicate.Match(this.DisplayName) || predicate.Match(this.PropertyType.Name);
System.Activities.Presentation\System\Activities\Presentation\View\ExpressionValueEditor.cs (1)
94typeToStringConverter.Convert(etb.ExpressionType ?? propertyValue.ParentProperty.PropertyType, typeof(string), null, CultureInfo.CurrentCulture);