GetFixedField
Find the syntax, use, parameters, return values, and an example for the GetFixedField macro command in Connexion client.
Syntax | BOOL = CS.GetFixedField (sFieldName, sField) |
---|---|
Use to | Get the data for a specific fixed-field element. |
Parameters |
|
Comments | This command works only when the setting for displaying the fixed field (View > OCLC Fixed Field) is set to Top or Bottom. The command does not work when the fixed field display is set to Variable Field. See FixedFieldPosition, the command for determining or specifying how the fixed field displays. |
Return values | TRUE if the action is successful, or FALSE if not. |
Example | Sub Main()
Dim CS As Object CS.Search “WC”, “#1” CS.GetFixedField “Type”, sField |
What this example does |
|