CreateXmlDocFactory

Mon 01 January 2018

Syntax

CreateXmlDocFactory()

Description

Use the CreateXmlFactory function to create an XmlDocFactory object.

Important! The XmlDocFactory object must be declared as a local variable only. Component and global scope are not supported.

Parameters

None.

Returns

A reference to an XmlDocFactory object.

read more

CropImage

Mon 01 January 2018

Syntax

CropImage(src_recfield, dst_recfield, [width, height])

Description

Use the CropImage function to crop a source image existing in a database record field and save it to a different destination record field in the database. The source and destination fields must be defined with the same image format: BMP, GIF, or ...

read more

CubicSpline

Mon 01 January 2018

Syntax

CubicSpline(DataPoints, Control_Option, Left_Constraint, Right_Constraint)

Description

Use the CubicSpline function to compute a cubic spline interpolation through a set of at least four datapoints.

Parameters

Field or Control

Definition

DataPoints

This parameter takes an array of array of number. The array’s contents are an array of six numbers ...

read more

CurrEffDt

Mon 01 January 2018

Syntax

CurrEffDt([level_num])

Description

Use the CurrEffDt function to return the effective date of the specified scroll level as a Date value.

Note: This function remains for backward compatibility only. Use the EffDt rowset class property instead.

If no level is specified, CurrEffDt returns the effective date of ...

read more

CurrEffRowNum

Mon 01 January 2018

Syntax

CurrEffRowNum([level_num])

Description

Use the CurrEffRowNum function to return the effective row number of the selected scroll level.

Note: This function remains for backward compatibility only. Use the RowNumber row class property, in combination with the GetCurrEffRow rowset method, instead.

If no level is specified, it returns ...

read more

CurrEffSeq

Mon 01 January 2018

Syntax

CurrEffSeq([level_num])

Description

Use the CurrEffSeq function to determine the effective sequence of a specific scroll area.

Note: This function remains for backward compatibility only. Use the EffSeq rowset class property instead.

If no level is specified, CurrEffSeq returns the effective sequence of the current scroll level ...

read more

CurrentLevelNumber

Mon 01 January 2018

Syntax

CurrentLevelNumber()

Description

Use the CurrentLevelNumber function to return the scroll level where the function call is located.

Returns

Returns a Number value equal to the scroll level where the function is being called. The function returns 0 if the field where the function is called is not in a ...

read more

CurrentRowNumber

Mon 01 January 2018

Syntax

CurrentRowNumber([level])

Description

Use the CurrentRowNumber function to determine the row number of the row currently displayed in a specific scroll area.

Note: This function remains for backward compatibility only. Use the RowNumber row class property instead.

This function can determine the current row number on the level where ...

read more

Date

Mon 01 January 2018

Syntax

Date(date_num)

Description

The Date function takes a number in the form YYYYMMDD and returns a corresponding Date value. If the date is invalid, Date displays an error message.

Warning! Make sure that you pass a four-digit year in the year parameter of this function. Two-digit values ...

read more

Date3

Mon 01 January 2018

Syntax

Date3(year, month, day)

Description

The Date3 function accepts a date expressed as three integers: year , month , and day . It returns a corresponding Date value. If the date is invalid, the Date3 displays an error message.

Warning! Make sure that you pass a four-digit year in the year parameter ...

read more