SetFixedField
Find the syntax, use, parameters, return values, and an example for the SetFixedField macro command in Connexion client.
Syntax | BOOL = CS.SetFixedField (sFieldName, sData) |
---|---|
Use to | Insert a value in 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. Also returns FALSE if you set a fixed field element as a space to clear it. |
Example | Sub Main()
Dim CS As Object If CS.IsOnline = False Then CS.Search “WC”, “#1” CS.SetFixedField “Type”, “t” If CS.SetFixedField(“Lang”, “Esp”) = True Then |
What this example does |
|