SourceFlagsSet

Note: This page includes content based on the F1 documentation for Centura development. It may be partially converted to support APF development, but should be regarded to be of uncertain actuality. It is provided as is. Eventually, it should be replaced by documentation available from within Visual Studio.

SalBoolean SourceFlagsSet( SalNumber nFlags, SalBoolean bSet )

The SourceFlagsSet method sets or clears one or more data source flags.

Parameters

Name Description
SalNumber nFlags Flags to set or clear. Specify any Const.SOURCE_* constant. You can combine several flags with the or (|) operator.
SalBoolean bSet Specify true to set the data source flag, false to clear it.

Returns

This method does not return a value

Example

! Turn on the possibility to create new records
Call SourceFlagsSet( SOURCE_OperationNew, TRUE )
C# coding sample.
Ifs.Application.Person.cComboBoxUserAccess.SourceFlagsSet
(Const.SOURCE_OperationNew, True);