QuickObjects.ObjectBase Send comments on this topic.
Copy(BaseField,Boolean,Boolean) Method
See Also 
Akal.QuickObjects.ObjectBase Namespace > StringField Class > Copy Method : Copy(BaseField,Boolean,Boolean) Method
instance
Field instance that will receive the property values.
copyValue
If true is passed in the Value of the field or its IsNull status will be passed to the passed in instance.
copyValidators
If true is passed in the Validators collection will be copied from the current instance to the passed in instance.
Copy - Copies all property values from the current instance to the passed in instance.

Syntax

C# 
public override void Copy( 
   BaseField instance,
   bool copyValue,
   bool copyValidators
)

Parameters

instance
Field instance that will receive the property values.
copyValue
If true is passed in the Value of the field or its IsNull status will be passed to the passed in instance.
copyValidators
If true is passed in the Validators collection will be copied from the current instance to the passed in instance.

Requirements

Target Platforms: .NET Framework 1.1 or .NET Framework 2.0

See Also