public MultiValue RegisterMultiValue(bool isStatic, out MultiValueBuilder builder) { MultiValue result = this.Store.AllocateMultiValue(isStatic); builder = new MultiValueBuilder(this, result.Handle); return(result); }
public void SetMultiValueProperty(PropertyId propertyId, out MultiValueBuilder multiValueBuilder) { MultiValue multiValue = this.converter.RegisterMultiValue(false, out multiValueBuilder); this.converter.StyleBuildHelper.SetProperty(0, propertyId, multiValue.PropertyValue); }
// Token: 0x06001BA7 RID: 7079 RVA: 0x000D4E5C File Offset: 0x000D305C public void SetMultiValueProperty(PropertyPrecedence propertyPrecedence, PropertyId propertyId, out MultiValueBuilder multiValueBuilder) { MultiValue multiValue = this.converter.RegisterMultiValue(false, out multiValueBuilder); this.converter.ContainerStyleBuildHelper.SetProperty((int)propertyPrecedence, propertyId, multiValue.PropertyValue); }