QuickObjects.ObjectBase Send comments on this topic.
Implicit Type Conversion Operator
See Also 
Akal.QuickObjects.ObjectBase Namespace > BinaryField Class : Implicit Type Conversion Operator

Byte[]

This allows the developer to directly get the value of this field as an array of Byte.

Parameters:
Description
fldBinaryField to convert.

Returns:
Type
Byte[]


	Byte[] myByteArr = MyBinaryField;
	

Overload List

OverloadDescription
Implicit Type Conversion(BinaryField)

Byte[]

This allows the developer to directly get the value of this field as an array of Byte.

Parameters:
Description
fldBinaryField to convert.

Returns:
Type
Byte[]


	Byte[] myByteArr = MyBinaryField;
	
 
Implicit Type Conversion(Byte[])

BinaryField

This allows the developer to directly assign an array of Byte into this Field. The BusinessObject property must be set manually after this assignment as BusinessObject is not set. If you are using the classes generated by Quick Objects Designer, then this step is not required as the generated code automatically does this for you.

Parameters:
Description
valByte[] to set the Value property with.

Returns:
Type
BinaryField


	MyBinaryField = myByteArr;
	
 

Requirements

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

See Also