property Item.Visible as Boolean
Specifies whether the item is visible or hidden.

TypeDescription
Boolean A Boolean expression that specifies whether the item is visible or hidden. 
By default, the Visible property is True.  You can use the Visible property to show or hide the item. Use the Refresh method to update the control, so the item became hidden. Use the Enabled property to disable an item. A disabled item shows as grayed, and it is un-selectable, so the user can select or highlight it. The Remove method removes an individual Item object giving its identifier or caption.

How can I hide an item?

VBA (MS Access, Excell...)

With Ribbon1
	With .Items
		.Add("Item 1").Visible = False
		.Add "Item 2"
	End With
	.Refresh 
End With

VB6

With Ribbon1
	With .Items
		.Add("Item 1").Visible = False
		.Add "Item 2"
	End With
	.Refresh 
End With

VB.NET

With Exribbon1
	With .Items
		.Add("Item 1").Visible = False
		.Add("Item 2")
	End With
	.Refresh()
End With

VB.NET for /COM

With AxRibbon1
	With .Items
		.Add("Item 1").Visible = False
		.Add("Item 2")
	End With
	.Refresh()
End With

C++

/*
	Copy and paste the following directives to your header file as
	it defines the namespace 'EXRIBBONLib' for the library: 'ExRibbon 1.0 Control Library'

	#import <ExRibbon.dll>
	using namespace EXRIBBONLib;
*/
EXRIBBONLib::IRibbonPtr spRibbon1 = GetDlgItem(IDC_RIBBON1)->GetControlUnknown();
EXRIBBONLib::IItemsPtr var_Items = spRibbon1->GetItems();
	var_Items->Add(L"Item 1",vtMissing,vtMissing)->PutVisible(VARIANT_FALSE);
	var_Items->Add(L"Item 2",vtMissing,vtMissing);
spRibbon1->Refresh();

C++ Builder

Exribbonlib_tlb::IItemsPtr var_Items = Ribbon1->Items;
	var_Items->Add(L"Item 1",TNoParam(),TNoParam())->Visible = false;
	var_Items->Add(L"Item 2",TNoParam(),TNoParam());
Ribbon1->Refresh();

C#

exontrol.EXRIBBONLib.Items var_Items = exribbon1.Items;
	var_Items.Add("Item 1",null,null).Visible = false;
	var_Items.Add("Item 2",null,null);
exribbon1.Refresh();

JScript/JavaScript

<BODY onload='Init()'>
<OBJECT CLASSID="clsid:DDF58CFA-750F-45E0-8A00-CFBE431702E2" id="Ribbon1"></OBJECT>

<SCRIPT LANGUAGE="JScript">
function Init()
{
	var var_Items = Ribbon1.Items;
		var_Items.Add("Item 1",null,null).Visible = false;
		var_Items.Add("Item 2",null,null);
	Ribbon1.Refresh();
}
</SCRIPT>
</BODY>

VBScript

<BODY onload='Init()'>
<OBJECT CLASSID="clsid:DDF58CFA-750F-45E0-8A00-CFBE431702E2" id="Ribbon1"></OBJECT>

<SCRIPT LANGUAGE="VBScript">
Function Init()
	With Ribbon1
		With .Items
			.Add("Item 1").Visible = False
			.Add "Item 2"
		End With
		.Refresh 
	End With
End Function
</SCRIPT>
</BODY>

C# for /COM

EXRIBBONLib.Items var_Items = axRibbon1.Items;
	var_Items.Add("Item 1",null,null).Visible = false;
	var_Items.Add("Item 2",null,null);
axRibbon1.Refresh();

X++ (Dynamics Ax 2009)

public void init()
{
	COM com_Item,com_Items;
	anytype var_Item,var_Items;
	;

	super();

	var_Items = exribbon1.Items(); com_Items = var_Items;
		var_Item = COM::createFromObject(com_Items.Add("Item 1")); com_Item = var_Item;
		com_Item.Visible(false);
		com_Items.Add("Item 2");
	exribbon1.Refresh();
}

Delphi 8 (.NET only)

with AxRibbon1 do
begin
	with Items do
	begin
		Add('Item 1',Nil,Nil).Visible := False;
		Add('Item 2',Nil,Nil);
	end;
	Refresh();
end

Delphi (standard)

with Ribbon1 do
begin
	with Items do
	begin
		Add('Item 1',Null,Null).Visible := False;
		Add('Item 2',Null,Null);
	end;
	Refresh();
end

VFP

with thisform.Ribbon1
	with .Items
		.Add("Item 1").Visible = .F.
		.Add("Item 2")
	endwith
	.Refresh
endwith

dBASE Plus

local oRibbon,var_Item,var_Items

oRibbon = form.Activex1.nativeObject
var_Items = oRibbon.Items
	// var_Items.Add("Item 1").Visible = false
	var_Item = var_Items.Add("Item 1")
	with (oRibbon)
		TemplateDef = [Dim var_Item]
		TemplateDef = var_Item
		Template = [var_Item.Visible = false]
	endwith
	var_Items.Add("Item 2")
oRibbon.Refresh()

XBasic (Alpha Five)

Dim oRibbon as P
Dim var_Item as P
Dim var_Items as P

oRibbon = topparent:CONTROL_ACTIVEX1.activex
var_Items = oRibbon.Items
	' var_Items.Add("Item 1").Visible = .f.
	var_Item = var_Items.Add("Item 1")
	oRibbon.TemplateDef = "Dim var_Item"
	oRibbon.TemplateDef = var_Item
	oRibbon.Template = "var_Item.Visible = False"

	var_Items.Add("Item 2")
oRibbon.Refresh()

Visual Objects

local var_Items as IItems

var_Items := oDCOCX_Exontrol1:Items
	var_Items:Add("Item 1",nil,nil):Visible := false
	var_Items:Add("Item 2",nil,nil)
oDCOCX_Exontrol1:Refresh()

PowerBuilder

OleObject oRibbon,var_Items

oRibbon = ole_1.Object
var_Items = oRibbon.Items
	var_Items.Add("Item 1").Visible = false
	var_Items.Add("Item 2")
oRibbon.Refresh()

Visual DataFlex

Procedure OnCreate
	Forward Send OnCreate
	Variant voItems
	Get ComItems to voItems
	Handle hoItems
	Get Create (RefClass(cComItems)) to hoItems
	Set pvComObject of hoItems to voItems
		Variant voItem
		Get ComAdd of hoItems "Item 1" Nothing Nothing to voItem
		Handle hoItem
		Get Create (RefClass(cComItem)) to hoItem
		Set pvComObject of hoItem to voItem
			Set ComVisible of hoItem to False
		Send Destroy to hoItem
		Get ComAdd of hoItems "Item 2" Nothing Nothing to Nothing
	Send Destroy to hoItems
	Send ComRefresh
End_Procedure

XBase++

#include "AppEvent.ch"
#include "ActiveX.ch"

PROCEDURE Main
 	LOCAL oForm
	LOCAL nEvent := 0, mp1 := NIL, mp2 := NIL, oXbp := NIL
	LOCAL oItems
	LOCAL oRibbon

	oForm := XbpDialog():new( AppDesktop() )
	oForm:drawingArea:clipChildren := .T.
	oForm:create( ,,{100,100}, {640,480},, .F. )
	oForm:close  := {|| PostAppEvent( xbeP_Quit )}

	oRibbon := XbpActiveXControl():new( oForm:drawingArea )
	oRibbon:CLSID  := "Exontrol.Ribbon.1" /*{DDF58CFA-750F-45E0-8A00-CFBE431702E2}*/
	oRibbon:create(,, {10,60},{610,370} )

		oItems := oRibbon:Items()
			oItems:Add("Item 1"):Visible := .F.
			oItems:Add("Item 2")
		oRibbon:Refresh()

	oForm:Show()
	DO WHILE nEvent != xbeP_Quit
		nEvent := AppEvent( @mp1, @mp2, @oXbp )
		oXbp:handleEvent( nEvent, mp1, mp2 )
	ENDDO 
RETURN