Difference between revisions of "Method globalCustomUIs"

From Ribbon Commander Documentation
Jump to: navigation, search
(Created page with "{{Under Construction}}")
 
Line 1: Line 1:
{{Under Construction}}
+
== Description ==
 +
Static method that returns the {{collection}} of [[rxCustomUI]]s with global dispatch in the current session.
 +
 
 +
== Parameters ==
 +
{{FuncTableBegin}}
 +
{{FuncTableEnd}}
 +
 
 +
== Remarks ==
 +
# The default [[rxCustomUI]] of the session (see [[Method defaultInstance|rxCustomUI.defaultInstance]]) is a read-only member of the collection.
 +
 
 +
== 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>

Revision as of 15:48, 14 March 2013

Description

Static method that returns the collection of rxCustomUIs with global dispatch in the current session.

Parameters

Parameter Name
Parameter Type
Default Value
Description

Remarks

  1. The default rxCustomUI of the session (see rxCustomUI.defaultInstance) is a read-only member of the collection.

Examples

VBA

  1. ' Cache a reference to the default rxCustomUI of this session
  2. Dim myCustomUI As rxCustomUI
  3. Set myCustomUI = rxCustomUI.defaultInstance

C#

  1. // Cache a reference to the default rxCustomUI of this session
  2. rxCustomUI myCustomUI = rxCustomUI.defaultInstance

VB.NET

  1. ' Cache a reference to the default rxCustomUI of this session
  2. Dim myCustomUI As rxCustomUI = rxCustomUI.defaultInstance

C++

  1.