CQG API 4.0 - Revised
QFormulaCreated Event
See Also  Send Feedback
cqg_qformula_name
QFormula name that was passed as parameter of CreateQFormula request.
cqg_qformula_definition
Definition of created QFormula. Value is null in case if creation failed.
cqg_error

CQGError object, describing the last error occurred during processing request.

If no error has occurred, the parameter value is either Nothing or invalid error depending on the UsedFromATLClient setting of the configuration.

The parameter can be checked for validity via the CQGCEL.IsValid method.

CQGCEL Interface : QFormulaCreated Event

Glossary Item Box

Description

This event is fired when new QFormula is created or when some error has occurred during the request processing.

Syntax

Visual Basic
Public Event QFormulaCreated( _
   ByVal cqg_qformula_name As String, _
   ByVal cqg_qformula_definition As CQGQFormulaDefinition, _
   ByVal cqg_error As CQGError _
)

Parameters

cqg_qformula_name
QFormula name that was passed as parameter of CreateQFormula request.
cqg_qformula_definition
Definition of created QFormula. Value is null in case if creation failed.
cqg_error

CQGError object, describing the last error occurred during processing request.

If no error has occurred, the parameter value is either Nothing or invalid error depending on the UsedFromATLClient setting of the configuration.

The parameter can be checked for validity via the CQGCEL.IsValid method.

Remarks

Request is considered successful if cqg_qformula_definition is valid.

See Also