Switch to: V12V11V10V9V8V7V6V5

VLink Class: Table Methods

VLink.IsBetween()

Declaration:

IsBetween( 
	inTableA as VTable,
	inTableB as VTable ) as Boolean

Parameters:

  • inTableA - Left table of link.
  • inTableB - Right table of link.

Description:

Returns TRUE if this Link links both specified Tables.

Example:

res = Link.IsBetween( TablA, TablB )

VLink.Table()

Declaration:

Table( inIndex as integer ) as VTable

Example:

  • inIndex - The index of table.

Description:

Returns a table of the link by index.

Example:

tbl = Link.Table( i )

VLink.Flush()

Declaration:

Flush( inFlushTables as Boolean = true )	

Parameters:

  • inFlushTables - TRUE if Tables of Link also should flush.

Description:

Flushes new or modified information of Link. On default it also pass flush() command to Tables of Link. You can set parameter to be FALSE, in this case Tables are not touched.

Example:

tbl = Link.Flush()