SysObject Function (Object) | |
Install a system-wide object. Please not that this works a bit different from Visual Objects.
Namespace:
XSharp.VO
Assembly:
XSharp.VO (in XSharp.VO.dll) Version: 2.19
Syntax FUNCTION SysObject(
oSys AS Object
) AS Object
public static Object SysObject(
Object oSys
)
Request Example
View SourceParameters
- oSys
- Type: Object
The object to be installed. oSys can be a NULL_OBJECT, in which case the system object is cleared.
Return Value
Type:
ObjectoSys or, if
oSys is not specified, the currently installed object.
Remarks
Unlike in Visual Objects the SysObject is not used to receive all messages being sent to other data types because in .Net
all types by default already accept messages.
See Also