Difference between revisions of "Method defaultInstance"
From Ribbon Commander Documentation
(Created page with "{{Under Construction}}") |
(→Remarks) |
||
(3 intermediate revisions by the same user not shown) | |||
Line 1: | Line 1: | ||
− | {{ | + | == Description == |
+ | Static method that returns the default [[rxCustomUI]] object of the current session. | ||
+ | |||
+ | == Parameters == | ||
+ | {{FuncTableBegin}} | ||
+ | {{FuncTableEnd}} | ||
+ | |||
+ | == Remarks == | ||
+ | The default [[rxCustomUI]] object is convenient for testing and tutorials. In production code however, it is recommended that custom contexts are created (see [[Method create|rxCustomUI.create]]) to avoid conflicts with other applications/add-ins. | ||
+ | |||
+ | == Examples == | ||
+ | |||
+ | === VBA === | ||
+ | <syntaxhighlight lang="vb" line> | ||
+ | ' Cache a reference to the default rxCustomUI of this session | ||
+ | Dim myCustomUI As rxCustomUI | ||
+ | Set myCustomUI = rxCustomUI.defaultInstance | ||
+ | </syntaxhighlight> | ||
+ | |||
+ | === C# === | ||
+ | <syntaxhighlight lang="csharp" line> | ||
+ | // Cache a reference to the default rxCustomUI of this session | ||
+ | rxCustomUI myCustomUI = rxCustomUI.defaultInstance | ||
+ | </syntaxhighlight> | ||
+ | |||
+ | === VB.NET === | ||
+ | <syntaxhighlight lang="vb" line> | ||
+ | ' Cache a reference to the default rxCustomUI of this session | ||
+ | Dim myCustomUI As rxCustomUI = rxCustomUI.defaultInstance | ||
+ | </syntaxhighlight> | ||
+ | |||
+ | === C++ === | ||
+ | <syntaxhighlight lang="cpp" line> | ||
+ | </syntaxhighlight> |
Latest revision as of 14:37, 14 March 2013
Description
Static method that returns the default rxCustomUI object of the current session.
Parameters
Parameter Name
|
Parameter Type
|
Default Value
|
Description
|
Remarks
The default rxCustomUI object is convenient for testing and tutorials. In production code however, it is recommended that custom contexts are created (see rxCustomUI.create) to avoid conflicts with other applications/add-ins.
Examples
VBA
' Cache a reference to the default rxCustomUI of this session
Dim myCustomUI As rxCustomUI
Set myCustomUI = rxCustomUI.defaultInstance
C#
// Cache a reference to the default rxCustomUI of this session
rxCustomUI myCustomUI = rxCustomUI.defaultInstance
VB.NET
' Cache a reference to the default rxCustomUI of this session
Dim myCustomUI As rxCustomUI = rxCustomUI.defaultInstance