property Item.Padding as String
Specifies the padding (space between the menu border and the item content) to display the item.

TypeDescription
String A string expression that indicates a list of 4 positive numbers separated by comma characters, which indicates the distance in pixels from margin to client, in the following format: left, top, right, bottom.
By default, the Padding property is empty "0,0,0,0". The Padding property specifies the padding for a particular item. The Padding property specifies the padding (space between the menu border and the item content) to display the item. The Caption property indicates the item's caption to be shown on the item. The BackColor property specifies a different background color or a visual appearance for the item. The Padding property of the Items collection specifies the padding for all items in the collection.

Does your control implement padding for item?

VBA (MS Access, Excell...)

With Ribbon1
	With .Items
		.BackColor = RGB(250,250,250)
		.Add("Item").Padding = "4,4,4,4"
		.Add("").ToString = "Item[pad=4,4,4,4]"
	End With
	.Refresh 
End With

VB6

With Ribbon1
	With .Items
		.BackColor = RGB(250,250,250)
		.Add("Item").Padding = "4,4,4,4"
		.Add("").ToString = "Item[pad=4,4,4,4]"
	End With
	.Refresh 
End With

VB.NET

With Exribbon1
	With .Items
		.BackColor = Color.FromArgb(250,250,250)
		.Add("Item").Padding = "4,4,4,4"
		.Add("").ToString = "Item[pad=4,4,4,4]"
	End With
	.Refresh()
End With

VB.NET for /COM

With AxRibbon1
	With .Items
		.BackColor = RGB(250,250,250)
		.Add("Item").Padding = "4,4,4,4"
		.Add("").ToString = "Item[pad=4,4,4,4]"
	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->PutBackColor(RGB(250,250,250));
	var_Items->Add(L"Item",vtMissing,vtMissing)->PutPadding(L"4,4,4,4");
	var_Items->Add(L"",vtMissing,vtMissing)->PutToString(L"Item[pad=4,4,4,4]");
spRibbon1->Refresh();

C++ Builder

Exribbonlib_tlb::IItemsPtr var_Items = Ribbon1->Items;
	var_Items->BackColor = RGB(250,250,250);
	var_Items->Add(L"Item",TNoParam(),TNoParam())->Padding = L"4,4,4,4";
	var_Items->Add(L"",TNoParam(),TNoParam())->ToString = L"Item[pad=4,4,4,4]";
Ribbon1->Refresh();

C#

exontrol.EXRIBBONLib.Items var_Items = exribbon1.Items;
	var_Items.BackColor = Color.FromArgb(250,250,250);
	var_Items.Add("Item",null,null).Padding = "4,4,4,4";
	var_Items.Add("",null,null).ToString = "Item[pad=4,4,4,4]";
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.BackColor = 16448250;
		var_Items.Add("Item",null,null).Padding = "4,4,4,4";
		var_Items.Add("",null,null).ToString = "Item[pad=4,4,4,4]";
	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
			.BackColor = RGB(250,250,250)
			.Add("Item").Padding = "4,4,4,4"
			.Add("").ToString = "Item[pad=4,4,4,4]"
		End With
		.Refresh 
	End With
End Function
</SCRIPT>
</BODY>

C# for /COM

EXRIBBONLib.Items var_Items = axRibbon1.Items;
	var_Items.BackColor = (uint)ColorTranslator.ToWin32(Color.FromArgb(250,250,250));
	var_Items.Add("Item",null,null).Padding = "4,4,4,4";
	var_Items.Add("",null,null).ToString = "Item[pad=4,4,4,4]";
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;
		com_Items.BackColor(WinApi::RGB2int(250,250,250));
		var_Item = COM::createFromObject(com_Items.Add("Item")); com_Item = var_Item;
		com_Item.Padding("4,4,4,4");
		var_Item = COM::createFromObject(com_Items.Add("")); com_Item = var_Item;
		com_Item.ToString("Item[pad=4,4,4,4]");
	exribbon1.Refresh();
}

Delphi 8 (.NET only)

with AxRibbon1 do
begin
	with Items do
	begin
		BackColor := $fafafa;
		Add('Item',Nil,Nil).Padding := '4,4,4,4';
		Add('',Nil,Nil).ToString := 'Item[pad=4,4,4,4]';
	end;
	Refresh();
end

Delphi (standard)

with Ribbon1 do
begin
	with Items do
	begin
		BackColor := $fafafa;
		Add('Item',Null,Null).Padding := '4,4,4,4';
		Add('',Null,Null).ToString := 'Item[pad=4,4,4,4]';
	end;
	Refresh();
end

VFP

with thisform.Ribbon1
	with .Items
		.BackColor = RGB(250,250,250)
		.Add("Item").Padding = "4,4,4,4"
		.Add("").ToString = "Item[pad=4,4,4,4]"
	endwith
	.Refresh
endwith

dBASE Plus

local oRibbon,var_Item,var_Item1,var_Items

oRibbon = form.Activex1.nativeObject
var_Items = oRibbon.Items
	var_Items.BackColor = 0xfafafa
	// var_Items.Add("Item").Padding = "4,4,4,4"
	var_Item = var_Items.Add("Item")
	with (oRibbon)
		TemplateDef = [Dim var_Item]
		TemplateDef = var_Item
		Template = [var_Item.Padding = "4,4,4,4"]
	endwith
	// var_Items.Add("").ToString = "Item[pad=4,4,4,4]"
	var_Item1 = var_Items.Add("")
	with (oRibbon)
		TemplateDef = [Dim var_Item1]
		TemplateDef = var_Item1
		Template = [var_Item1.ToString = "Item[pad=4,4,4,4]"]
	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

oRibbon = topparent:CONTROL_ACTIVEX1.activex
var_Items = oRibbon.Items
	var_Items.BackColor = 16448250
	' var_Items.Add("Item").Padding = "4,4,4,4"
	var_Item = var_Items.Add("Item")
	oRibbon.TemplateDef = "Dim var_Item"
	oRibbon.TemplateDef = var_Item
	oRibbon.Template = "var_Item.Padding = \"4,4,4,4\""

	' var_Items.Add("").ToString = "Item[pad=4,4,4,4]"
	var_Item1 = var_Items.Add("")
	oRibbon.TemplateDef = "Dim var_Item1"
	oRibbon.TemplateDef = var_Item1
	oRibbon.Template = "var_Item1.ToString = \"Item[pad=4,4,4,4]\""

oRibbon.Refresh()

Visual Objects

local var_Items as IItems

var_Items := oDCOCX_Exontrol1:Items
	var_Items:BackColor := RGB(250,250,250)
	var_Items:Add("Item",nil,nil):Padding := "4,4,4,4"
	var_Items:Add("",nil,nil):ToString := "Item[pad=4,4,4,4]"
oDCOCX_Exontrol1:Refresh()

PowerBuilder

OleObject oRibbon,var_Items

oRibbon = ole_1.Object
var_Items = oRibbon.Items
	var_Items.BackColor = RGB(250,250,250)
	var_Items.Add("Item").Padding = "4,4,4,4"
	var_Items.Add("").ToString = "Item[pad=4,4,4,4]"
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
		Set ComBackColor of hoItems to (RGB(250,250,250))
		Variant voItem
		Get ComAdd of hoItems "Item" Nothing Nothing to voItem
		Handle hoItem
		Get Create (RefClass(cComItem)) to hoItem
		Set pvComObject of hoItem to voItem
			Set ComPadding of hoItem to "4,4,4,4"
		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 "Item[pad=4,4,4,4]"
		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 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:SetProperty("BackColor",AutomationTranslateColor( GraMakeRGBColor  ( { 250,250,250 } )  , .F. ))
			oItems:Add("Item"):Padding := "4,4,4,4"
			oItems:Add(""):ToString := "Item[pad=4,4,4,4]"
		oRibbon:Refresh()

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