Наследование: Vixen.Module.ModuleDataModelBase
Пример #1
0
        public override IModuleDataModel Clone()
        {
            CustomValueData result = new CustomValueData();

            result.ValueType   = ValueType;
            result.Value8Bit   = Value8Bit;
            result.Value16Bit  = Value16Bit;
            result.Value32Bit  = Value32Bit;
            result.Value64Bit  = Value64Bit;
            result.ColorValue  = ColorValue;
            result.StringValue = StringValue;
            return(result);
        }
Пример #2
0
 public override IModuleDataModel Clone()
 {
     CustomValueData result = new CustomValueData();
     result.ValueType = ValueType;
     result.Value8Bit = Value8Bit;
     result.Value16Bit = Value16Bit;
     result.Value32Bit = Value32Bit;
     result.Value64Bit = Value64Bit;
     result.ColorValue = ColorValue;
     result.StringValue = StringValue;
     return result;
 }