property Item.ShowPopupArrow as Boolean
Gets or sets a value that indicates whether an item that has a sub-menu shows or hides its popup arrow.

TypeDescription
Boolean A Boolean expression that specifies whether the item displays the popup arrow.
By default, the ShowPopupArrow property is True. Use the ShowPopupArrow property to hide the popup's arrow on the parent item.

Is it possible to hide the popup's arrow?

VBA (MS Access, Excell...)

With Ribbon1
	With .Items
		With .Add("Popup",2)
			.ShowPopupArrow = False
			With .Items
				.PopupAppearance = 6
				.Add "Item 1"
				.Add "Item 2"
				.Add "Item 3"
			End With
		End With
		.Add("").ToString = "Popup[arrow=0][popupapp=6](Item 1,Item 2,Item 3)"
	End With
	.Refresh 
End With

VB6

With Ribbon1
	With .Items
		With .Add("Popup",2)
			.ShowPopupArrow = False
			With .Items
				.PopupAppearance = ShadowBorder
				.Add "Item 1"
				.Add "Item 2"
				.Add "Item 3"
			End With
		End With
		.Add("").ToString = "Popup[arrow=0][popupapp=6](Item 1,Item 2,Item 3)"
	End With
	.Refresh 
End With

VB.NET

With Exribbon1
	With .Items
		With .Add("Popup",2)
			.ShowPopupArrow = False
			With .Items
				.PopupAppearance = exontrol.EXRIBBONLib.AppearanceEnum.ShadowBorder
				.Add("Item 1")
				.Add("Item 2")
				.Add("Item 3")
			End With
		End With
		.Add("").ToString = "Popup[arrow=0][popupapp=6](Item 1,Item 2,Item 3)"
	End With
	.Refresh()
End With

VB.NET for /COM

With AxRibbon1
	With .Items
		With .Add("Popup",2)
			.ShowPopupArrow = False
			With .Items
				.PopupAppearance = EXRIBBONLib.AppearanceEnum.ShadowBorder
				.Add("Item 1")
				.Add("Item 2")
				.Add("Item 3")
			End With
		End With
		.Add("").ToString = "Popup[arrow=0][popupapp=6](Item 1,Item 2,Item 3)"
	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();
	EXRIBBONLib::IItemPtr var_Item = var_Items->Add(L"Popup",long(2),vtMissing);
		var_Item->PutShowPopupArrow(VARIANT_FALSE);
		EXRIBBONLib::IItemsPtr var_Items1 = var_Item->GetItems();
			var_Items1->PutPopupAppearance(EXRIBBONLib::ShadowBorder);
			var_Items1->Add(L"Item 1",vtMissing,vtMissing);
			var_Items1->Add(L"Item 2",vtMissing,vtMissing);
			var_Items1->Add(L"Item 3",vtMissing,vtMissing);
	var_Items->Add(L"",vtMissing,vtMissing)->PutToString(L"Popup[arrow=0][popupapp=6](Item 1,Item 2,Item 3)");
spRibbon1->Refresh();

C++ Builder

Exribbonlib_tlb::IItemsPtr var_Items = Ribbon1->Items;
	Exribbonlib_tlb::IItemPtr var_Item = var_Items->Add(L"Popup",TVariant(2),TNoParam());
		var_Item->ShowPopupArrow = false;
		Exribbonlib_tlb::IItemsPtr var_Items1 = var_Item->Items;
			var_Items1->PopupAppearance = Exribbonlib_tlb::AppearanceEnum::ShadowBorder;
			var_Items1->Add(L"Item 1",TNoParam(),TNoParam());
			var_Items1->Add(L"Item 2",TNoParam(),TNoParam());
			var_Items1->Add(L"Item 3",TNoParam(),TNoParam());
	var_Items->Add(L"",TNoParam(),TNoParam())->ToString = L"Popup[arrow=0][popupapp=6](Item 1,Item 2,Item 3)";
Ribbon1->Refresh();

C#

exontrol.EXRIBBONLib.Items var_Items = exribbon1.Items;
	exontrol.EXRIBBONLib.Item var_Item = var_Items.Add("Popup",2,null);
		var_Item.ShowPopupArrow = false;
		exontrol.EXRIBBONLib.Items var_Items1 = var_Item.Items;
			var_Items1.PopupAppearance = exontrol.EXRIBBONLib.AppearanceEnum.ShadowBorder;
			var_Items1.Add("Item 1",null,null);
			var_Items1.Add("Item 2",null,null);
			var_Items1.Add("Item 3",null,null);
	var_Items.Add("",null,null).ToString = "Popup[arrow=0][popupapp=6](Item 1,Item 2,Item 3)";
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 var_Item = var_Items.Add("Popup",2,null);
			var_Item.ShowPopupArrow = false;
			var var_Items1 = var_Item.Items;
				var_Items1.PopupAppearance = 6;
				var_Items1.Add("Item 1",null,null);
				var_Items1.Add("Item 2",null,null);
				var_Items1.Add("Item 3",null,null);
		var_Items.Add("",null,null).ToString = "Popup[arrow=0][popupapp=6](Item 1,Item 2,Item 3)";
	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
			With .Add("Popup",2)
				.ShowPopupArrow = False
				With .Items
					.PopupAppearance = 6
					.Add "Item 1"
					.Add "Item 2"
					.Add "Item 3"
				End With
			End With
			.Add("").ToString = "Popup[arrow=0][popupapp=6](Item 1,Item 2,Item 3)"
		End With
		.Refresh 
	End With
End Function
</SCRIPT>
</BODY>

C# for /COM

EXRIBBONLib.Items var_Items = axRibbon1.Items;
	EXRIBBONLib.Item var_Item = var_Items.Add("Popup",2,null);
		var_Item.ShowPopupArrow = false;
		EXRIBBONLib.Items var_Items1 = var_Item.Items;
			var_Items1.PopupAppearance = EXRIBBONLib.AppearanceEnum.ShadowBorder;
			var_Items1.Add("Item 1",null,null);
			var_Items1.Add("Item 2",null,null);
			var_Items1.Add("Item 3",null,null);
	var_Items.Add("",null,null).ToString = "Popup[arrow=0][popupapp=6](Item 1,Item 2,Item 3)";
axRibbon1.Refresh();

X++ (Dynamics Ax 2009)

public void init()
{
	COM com_Item,com_Item1,com_Items,com_Items1;
	anytype var_Item,var_Item1,var_Items,var_Items1;
	;

	super();

	var_Items = exribbon1.Items(); com_Items = var_Items;
		var_Item = com_Items.Add("Popup",COMVariant::createFromInt(2)); com_Item = var_Item;
			com_Item.ShowPopupArrow(false);
			var_Items1 = com_Item.Items(); com_Items1 = var_Items1;
				com_Items1.PopupAppearance(6/*ShadowBorder*/);
				com_Items1.Add("Item 1");
				com_Items1.Add("Item 2");
				com_Items1.Add("Item 3");
		var_Item1 = COM::createFromObject(com_Items.Add("")); com_Item1 = var_Item1;
		com_Item1.ToString("Popup[arrow=0][popupapp=6](Item 1,Item 2,Item 3)");
	exribbon1.Refresh();
}

Delphi 8 (.NET only)

with AxRibbon1 do
begin
	with Items do
	begin
		with Add('Popup',TObject(2),Nil) do
		begin
			ShowPopupArrow := False;
			with Items do
			begin
				PopupAppearance := EXRIBBONLib.AppearanceEnum.ShadowBorder;
				Add('Item 1',Nil,Nil);
				Add('Item 2',Nil,Nil);
				Add('Item 3',Nil,Nil);
			end;
		end;
		Add('',Nil,Nil).ToString := 'Popup[arrow=0][popupapp=6](Item 1,Item 2,Item 3)';
	end;
	Refresh();
end

Delphi (standard)

with Ribbon1 do
begin
	with Items do
	begin
		with Add('Popup',OleVariant(2),Null) do
		begin
			ShowPopupArrow := False;
			with Items do
			begin
				PopupAppearance := EXRIBBONLib_TLB.ShadowBorder;
				Add('Item 1',Null,Null);
				Add('Item 2',Null,Null);
				Add('Item 3',Null,Null);
			end;
		end;
		Add('',Null,Null).ToString := 'Popup[arrow=0][popupapp=6](Item 1,Item 2,Item 3)';
	end;
	Refresh();
end

VFP

with thisform.Ribbon1
	with .Items
		with .Add("Popup",2)
			.ShowPopupArrow = .F.
			with .Items
				.PopupAppearance = 6
				.Add("Item 1")
				.Add("Item 2")
				.Add("Item 3")
			endwith
		endwith
		.Add("").ToString = "Popup[arrow=0][popupapp=6](Item 1,Item 2,Item 3)"
	endwith
	.Refresh
endwith

dBASE Plus

local oRibbon,var_Item,var_Item1,var_Items,var_Items1

oRibbon = form.Activex1.nativeObject
var_Items = oRibbon.Items
	var_Item = var_Items.Add("Popup",2)
		var_Item.ShowPopupArrow = false
		var_Items1 = var_Item.Items
			var_Items1.PopupAppearance = 6
			var_Items1.Add("Item 1")
			var_Items1.Add("Item 2")
			var_Items1.Add("Item 3")
	// var_Items.Add("").ToString = "Popup[arrow=0][popupapp=6](Item 1,Item 2,Item 3)"
	var_Item1 = var_Items.Add("")
	with (oRibbon)
		TemplateDef = [Dim var_Item1]
		TemplateDef = var_Item1
		Template = [var_Item1.ToString = "Popup[arrow=0][popupapp=6](Item 1,Item 2,Item 3)"]
	endwith
oRibbon.Refresh()

XBasic (Alpha Five)

Dim oRibbon as P
Dim var_Item as P
Dim var_Item1 as P
Dim var_Items as P
Dim var_Items1 as P

oRibbon = topparent:CONTROL_ACTIVEX1.activex
var_Items = oRibbon.Items
	var_Item = var_Items.Add("Popup",2)
		var_Item.ShowPopupArrow = .f.
		var_Items1 = var_Item.Items
			var_Items1.PopupAppearance = 6
			var_Items1.Add("Item 1")
			var_Items1.Add("Item 2")
			var_Items1.Add("Item 3")
	' var_Items.Add("").ToString = "Popup[arrow=0][popupapp=6](Item 1,Item 2,Item 3)"
	var_Item1 = var_Items.Add("")
	oRibbon.TemplateDef = "Dim var_Item1"
	oRibbon.TemplateDef = var_Item1
	oRibbon.Template = "var_Item1.ToString = \"Popup[arrow=0][popupapp=6](Item 1,Item 2,Item 3)\""

oRibbon.Refresh()

Visual Objects

local var_Item as IItem
local var_Items,var_Items1 as IItems

var_Items := oDCOCX_Exontrol1:Items
	var_Item := var_Items:Add("Popup",2,nil)
		var_Item:ShowPopupArrow := false
		var_Items1 := var_Item:Items
			var_Items1:PopupAppearance := ShadowBorder
			var_Items1:Add("Item 1",nil,nil)
			var_Items1:Add("Item 2",nil,nil)
			var_Items1:Add("Item 3",nil,nil)
	var_Items:Add("",nil,nil):ToString := "Popup[arrow=0][popupapp=6](Item 1,Item 2,Item 3)"
oDCOCX_Exontrol1:Refresh()

PowerBuilder

OleObject oRibbon,var_Item,var_Items,var_Items1

oRibbon = ole_1.Object
var_Items = oRibbon.Items
	var_Item = var_Items.Add("Popup",2)
		var_Item.ShowPopupArrow = false
		var_Items1 = var_Item.Items
			var_Items1.PopupAppearance = 6
			var_Items1.Add("Item 1")
			var_Items1.Add("Item 2")
			var_Items1.Add("Item 3")
	var_Items.Add("").ToString = "Popup[arrow=0][popupapp=6](Item 1,Item 2,Item 3)"
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 "Popup" 2 Nothing to voItem
		Handle hoItem
		Get Create (RefClass(cComItem)) to hoItem
		Set pvComObject of hoItem to voItem
			Set ComShowPopupArrow of hoItem to False
			Variant voItems1
			Get ComItems of hoItem to voItems1
			Handle hoItems1
			Get Create (RefClass(cComItems)) to hoItems1
			Set pvComObject of hoItems1 to voItems1
				Set ComPopupAppearance of hoItems1 to OLEShadowBorder
				Get ComAdd of hoItems1 "Item 1" Nothing Nothing to Nothing
				Get ComAdd of hoItems1 "Item 2" Nothing Nothing to Nothing
				Get ComAdd of hoItems1 "Item 3" Nothing Nothing to Nothing
			Send Destroy to hoItems1
		Send Destroy to hoItem
		Variant voItem1
		Get ComAdd of hoItems "" Nothing Nothing to voItem1
		Handle hoItem1
		Get Create (RefClass(cComItem)) to hoItem1
		Set pvComObject of hoItem1 to voItem1
			Set ComToString of hoItem1 to "Popup[arrow=0][popupapp=6](Item 1,Item 2,Item 3)"
		Send Destroy to hoItem1
	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 oItem
	LOCAL oItems,oItems1
	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()
			oItem := oItems:Add("Popup",2)
				oItem:ShowPopupArrow := .F.
				oItems1 := oItem:Items()
					oItems1:PopupAppearance := 6/*ShadowBorder*/
					oItems1:Add("Item 1")
					oItems1:Add("Item 2")
					oItems1:Add("Item 3")
			oItems:Add(""):ToString := "Popup[arrow=0][popupapp=6](Item 1,Item 2,Item 3)"
		oRibbon:Refresh()

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