Пример #1
0
        public void SetValues(CustomProperty otherProperty)
        {
            name        = otherProperty.Name;
            simpleValue = otherProperty.SimpleValue;

            if (otherProperty.ComplexValue != null && otherProperty.ComplexValue is DataGrid)
            {
                complexValue = ((DataGrid)(otherProperty.ComplexValue)).Clone();
            }
        }
Пример #2
0
 public IModelBuilder WithComplexDataType(IComplexDataType complexDataType)
 => this.underlyingModelBuilder.WithComplexDataType(complexDataType);
Пример #3
0
 public IModelBuilder WithComplexDataType(IComplexDataType complexDataType)
 {
     this.complexDataTypes.Add(complexDataType);
     return(this);
 }