CoreDb.Relation Method | |
Return the linking expression of a specified relation.
Namespace:
XSharp
Assembly:
XSharp.Core (in XSharp.Core.dll) Version: 2.19
Syntax STATIC METHOD Relation(
nPos AS DWORD,
sRel REF STRING
) AS LOGIC
public static bool Relation(
uint nPos,
ref string sRel
)
Request Example
View SourceParameters
- nPos
- Type: DWord
The position of the desired relation in the list of current work area relations. The relations are numbered according to the order in which they were defined by relation setting. - sRel
- Type: String
Return Value
Type:
LogicTRUE if successful; otherwise, FALSE.
Remarks This function is like DBSetRelation().
This function, however, does not call the error
handler and will therefore not produce a runtime error message or create an error object if it fails.
Therefore it is important to check the return value to determine if the function succeeded.
The LastRddError property in the runtimestate
will contain needed information about any error that occurs.
See Also