Switch to: V14V13V12V11V10V9V8V7V6V5

VDatabase Class: IndexStyle Methods

VDatabase.CreateIndexStyle()

Declaration:

CreateIndexStyle( inName as String ) as VIndexStyle

Parameters:

  • inName - The name of an index style.

Description:

Creates a new Index Style in the database.

Example:

dim indStyle1 as VIndexStyle	
IndexStyle1 = db.CreateIndexStyle( "myStyle" )

VDatabase.DropIndexStyle()

Declaration:

DropIndexStyle( inStyle as VIndexStyle ) 

Parameters:

  • inStyle - The index style to be deleted.

Description:

Deletes the specified index style from the database.

Example:

db.DropIndexStyle( IndexStyle1 )

VDatabase.IndexStyle()

Declaration:

IndexStyle( inName as String ) as VIndexStyle

Parameters:

  • inName - The Name of a IndexStyle.

Description:

Returns an IndexStyle by name.

Note: The parameter Name is case insensitive.

Example:

IndexStyle1 = db.IndexStyle( "IndexStyle1" )