185
Disable chart stacking

// ViewChange event - Occurs when the control's view is changed, such as when data is updated, summarized, sorted, or filtered.
void onEvent_ViewChange()
{
	;
	expivot1.CustomView().Object().AllowStack(0);
}

public void init()
{
	;

	super();

	expivot1.BeginUpdate();
	expivot1.HeaderHeight(24);
	expivot1.HeaderAppearance(4/*Etched*/);
	expivot1.Import("C:\\Program Files\\Exontrol\\ExPivot\\Sample\\data.txt");
	expivot1.PivotColumnsFloatBarVisible(-1/*exPanelVisible*/);
	expivot1.PivotRows("0");
	expivot1.PivotColumns("sum(5)/12");
	expivot1.ShowBranchRows(3/*exBranchColumns*/);
	expivot1.PivotBarVisible(553652187/*exPivotBarSingleAggregate | exPivotBarDefault*/);
	expivot1.CustomView().ControlID("exontrol.graph");
	expivot1.EndUpdate();
}
184
Can the vertical/horizontal line be hidden when the cursor hovers over the graph chart
public void init()
{
	COM com_Cursor,com_CustomView,com_Object;
	anytype var_Cursor,var_CustomView,var_Object;
	;

	super();

	expivot1.BeginUpdate();
	expivot1.HeaderHeight(24);
	expivot1.HeaderAppearance(4/*Etched*/);
	expivot1.Import("C:\\Program Files\\Exontrol\\ExPivot\\Sample\\data.txt");
	expivot1.PivotColumnsFloatBarVisible(-1/*exPanelVisible*/);
	expivot1.PivotRows("0");
	expivot1.PivotColumns("sum(5)/12");
	expivot1.ShowBranchRows(3/*exBranchColumns*/);
	expivot1.PivotBarVisible(553652187/*exPivotBarSingleAggregate | exPivotBarDefault*/);
	var_CustomView = expivot1.CustomView(); com_CustomView = var_CustomView;
		com_CustomView.License("XXXXXXXX");
		com_CustomView.ControlID("exontrol.graph");
		var_Object = COM::createFromObject(com_CustomView.Object()); com_Object = var_Object;
		var_Cursor = COM::createFromObject(com_Object).Cursor(); com_Cursor = var_Cursor;
		com_Cursor.Visible(false);
	expivot1.EndUpdate();
}
183
Define the column caption and row title when the PivotRows property is empty

public void init()
{
	;

	super();

	expivot1.BeginUpdate();
	expivot1.HeaderHeight(24);
	expivot1.HeaderAppearance(4/*Etched*/);
	expivot1.Description(27/*exColumnEmptyPivotRows*/,"<c>\\");
	expivot1.Description(28/*exRowEmptyPivotRows*/,"Total");
	expivot1.Import("C:\\Program Files\\Exontrol\\ExPivot\\Sample\\data.txt");
	expivot1.PivotColumnsFloatBarVisible(32/*exPanelAsChild*/);
	expivot1.PivotColumns("sum(5)[content=numeric]");
	expivot1.ShowBranchRows(3/*exBranchColumns*/);
	expivot1.DrawGridLines(-2/*exRowLines*/);
	expivot1.GridLineStyle(48/*exGridLinesSolid*/);
	expivot1.EndUpdate();
}
182
Change the background color of the splitbars

public void init()
{
	;

	super();

	expivot1.BeginUpdate();
	expivot1.Background(141/*exHSplitBar*/,WinApi::RGB2int(240,240,240));
	expivot1.Background(142/*exCSplitBar*/,WinApi::RGB2int(240,240,240));
	expivot1.HeaderHeight(24);
	expivot1.HeaderAppearance(4/*Etched*/);
	expivot1.Import("C:\\Program Files\\Exontrol\\ExPivot\\Sample\\data.txt");
	expivot1.PivotColumnsFloatBarVisible(32/*exPanelAsChild*/);
	expivot1.PivotRows("0");
	expivot1.PivotColumns("sum(5)/12");
	expivot1.ShowBranchRows(3/*exBranchColumns*/);
	expivot1.PivotBarVisible(553652187/*exPivotBarSingleAggregate | exPivotBarDefault*/);
	expivot1.DrawGridLines(2/*exVLines*/);
	expivot1.EndUpdate();
}
181
Occurs when the control's view is changed, such as when data is updated, summarized, sorted, or filtered
// ViewChange event - Occurs when the control's view is changed, such as when data is updated, summarized, sorted, or filtered.
void onEvent_ViewChange()
{
	;
	print( expivot1.CustomView().Columns() );
}

public void init()
{
	;

	super();

	expivot1.HeaderHeight(24);
	expivot1.HeaderAppearance(4/*Etched*/);
	expivot1.GridLineStyle(512/*exGridLinesGeometric*/);
	expivot1.Import("C:\\Program Files\\Exontrol\\ExPivot\\Sample\\data.txt");
	expivot1.PivotColumns("sum(5)/12");
}
180
Retrieves the data information about the current view, such as columns, data, ...
// ViewChange event - Occurs when the control's view is changed, such as when data is updated, summarized, sorted, or filtered.
void onEvent_ViewChange()
{
	COM com_CustomView;
	anytype var_CustomView;
	;
	var_CustomView = expivot1.CustomView(); com_CustomView = var_CustomView;
		print( "Columns" );
		print( com_CustomView.Columns() );
		print( "Items" );
		print( com_CustomView.Items() );
		print( "Categories" );
		print( com_CustomView.Categories() );
		print( "Series" );
		print( com_CustomView.Series() );
		print( "Data" );
		print( com_CustomView.Data() );
}

public void init()
{
	COM com_CustomView;
	anytype var_CustomView;
	;

	super();

	expivot1.BeginUpdate();
	expivot1.HeaderHeight(24);
	expivot1.HeaderAppearance(4/*Etched*/);
	expivot1.Import("C:\\Program Files\\Exontrol\\ExPivot\\Sample\\data.txt");
	expivot1.PivotColumnsFloatBarVisible(-1/*exPanelVisible*/);
	expivot1.PivotRows("0");
	expivot1.PivotColumns("sum(5)");
	expivot1.ShowBranchRows(3/*exBranchColumns*/);
	expivot1.PivotBarVisible(553652187/*exPivotBarSingleAggregate | exPivotBarDefault*/);
	var_CustomView = expivot1.CustomView(); com_CustomView = var_CustomView;
	expivot1.EndUpdate();
}
179
Access the custom-view
public void init()
{
	COM com_CustomView,com_Object;
	anytype var_CustomView,var_Object;
	;

	super();

	expivot1.BeginUpdate();
	expivot1.HeaderHeight(24);
	expivot1.HeaderAppearance(4/*Etched*/);
	expivot1.Import("C:\\Program Files\\Exontrol\\ExPivot\\Sample\\data.txt");
	expivot1.PivotColumnsFloatBarVisible(-1/*exPanelVisible*/);
	expivot1.PivotRows("0");
	expivot1.PivotColumns("sum(5)");
	expivot1.ShowBranchRows(3/*exBranchColumns*/);
	expivot1.PivotBarVisible(553652187/*exPivotBarSingleAggregate | exPivotBarDefault*/);
	var_CustomView = expivot1.CustomView(); com_CustomView = var_CustomView;
		com_CustomView.ControlID("exontrol.graph");
		var_Object = COM::createFromObject(com_CustomView.Object()); com_Object = var_Object;
		com_Object.ForeColor(WinApi::RGB2int(128,128,128));
	expivot1.EndUpdate();
}
178
Switch between custom view and table mode
// OleEvent event - Occurs whenever the custom view fires an event.
void onEvent_OleEvent(COM   _Ev)
{
	;
	expivot1.CustomView().Visible(false);
}

public void init()
{
	;

	super();

	expivot1.BeginUpdate();
	expivot1.HeaderHeight(24);
	expivot1.HeaderAppearance(4/*Etched*/);
	expivot1.Import("C:\\Program Files\\Exontrol\\ExPivot\\Sample\\data.txt");
	expivot1.PivotColumnsFloatBarVisible(-1/*exPanelVisible*/);
	expivot1.PivotRows("0");
	expivot1.PivotColumns("sum(5)");
	expivot1.ShowBranchRows(3/*exBranchColumns*/);
	expivot1.PivotBarVisible(553652187/*exPivotBarSingleAggregate | exPivotBarDefault*/);
	expivot1.CustomView().ControlID("exontrol.graph");
	expivot1.EndUpdate();
}
177
'exontrol.graph' component creation failed

public void init()
{
	COM com_CustomView;
	anytype var_CustomView;
	;

	super();

	expivot1.BeginUpdate();
	expivot1.HeaderHeight(24);
	expivot1.HeaderAppearance(4/*Etched*/);
	expivot1.Import("C:\\Program Files\\Exontrol\\ExPivot\\Sample\\data.txt");
	expivot1.PivotColumnsFloatBarVisible(-1/*exPanelVisible*/);
	expivot1.PivotRows("0");
	expivot1.PivotColumns("sum(5)/12");
	expivot1.ShowBranchRows(3/*exBranchColumns*/);
	expivot1.PivotBarVisible(553652187/*exPivotBarSingleAggregate | exPivotBarDefault*/);
	var_CustomView = expivot1.CustomView(); com_CustomView = var_CustomView;
		com_CustomView.License("XXXXXXXX");
		com_CustomView.ControlID("exontrol.graph");
	expivot1.EndUpdate();
}
176
How can I change the graphical/chart representation of my data

public void init()
{
	COM com_CustomView,com_Object;
	anytype var_CustomView,var_Object;
	;

	super();

	expivot1.BeginUpdate();
	expivot1.HeaderHeight(24);
	expivot1.HeaderAppearance(4/*Etched*/);
	expivot1.Import("C:\\Program Files\\Exontrol\\ExPivot\\Sample\\data.txt");
	expivot1.PivotColumnsFloatBarVisible(-1/*exPanelVisible*/);
	expivot1.PivotRows("0");
	expivot1.PivotColumns("sum(5)/12");
	expivot1.ShowBranchRows(3/*exBranchColumns*/);
	expivot1.PivotBarVisible(553652187/*exPivotBarSingleAggregate | exPivotBarDefault*/);
	var_CustomView = expivot1.CustomView(); com_CustomView = var_CustomView;
		com_CustomView.ControlID("exontrol.graph");
		var_Object = COM::createFromObject(com_CustomView.Object()); com_Object = var_Object;
		com_Object.SerieType("line");
	expivot1.EndUpdate();
}
175
Organizes the layout into distinct sections: one for pivot rows, one for pivot columns, and a separate area for defining aggregates

public void init()
{
	;

	super();

	expivot1.BeginUpdate();
	expivot1.HeaderHeight(24);
	expivot1.HeaderAppearance(4/*Etched*/);
	expivot1.Import("C:\\Program Files\\Exontrol\\ExPivot\\Sample\\data.txt");
	expivot1.PivotColumnsFloatBarVisible(32/*exPanelAsChild*/);
	expivot1.ShowBranchRows(3/*exBranchColumns*/);
	expivot1.PivotRows("0");
	expivot1.PivotBarVisible(553652187/*exPivotBarSingleAggregate | exPivotBarDefault*/);
	expivot1.ShowDataOnDblClick(true);
	expivot1.EndUpdate();
}
174
How can I provide a graphical/chart representation of my data

public void init()
{
	;

	super();

	expivot1.BeginUpdate();
	expivot1.HeaderHeight(24);
	expivot1.HeaderAppearance(4/*Etched*/);
	expivot1.Import("C:\\Program Files\\Exontrol\\ExPivot\\Sample\\data.txt");
	expivot1.PivotColumnsFloatBarVisible(32/*exPanelAsChild*/);
	expivot1.PivotRows("0");
	expivot1.PivotColumns("sum(5)");
	expivot1.CustomView().ControlID("exontrol.graph");
	expivot1.EndUpdate();
}
173
Rename the Total caption
public void init()
{
	;

	super();

	expivot1.BeginUpdate();
	expivot1.HeaderHeight(24);
	expivot1.HeaderAppearance(4/*Etched*/);
	expivot1.Import("C:\\Program Files\\Exontrol\\ExPivot\\Sample\\data.txt");
	expivot1.PivotRows("0");
	expivot1.PivotColumns("sum(5)");
	expivot1.PivotTotals("/sum[bold]");
	expivot1.PivotColumnsFloatBarVisible(32/*exPanelAsChild*/);
	expivot1.FormatPivotTotal("( iaggregate = 5 ? (ilevel = 0 ? 'Overall amount' : 'Sectional sum') : caggregate )");
	expivot1.EndUpdate();
}
172
Specify the size of the Columns panel

public void init()
{
	;

	super();

	expivot1.BeginUpdate();
	expivot1.HeaderHeight(24);
	expivot1.HeaderAppearance(4/*Etched*/);
	expivot1.Import("C:\\Program Files\\Exontrol\\ExPivot\\Sample\\data.txt");
	expivot1.PivotRows("0");
	expivot1.PivotColumns("sum(5)");
	expivot1.PivotColumnsFloatBarRect(",,96");
	expivot1.PivotColumnsFloatBarVisible(32/*exPanelAsChild*/);
	expivot1.EndUpdate();
}
171
Show a vertical line between pivot and Columns panel (EBN color)

public void init()
{
	str var_s;
	;

	super();

	expivot1.BeginUpdate();
	var_s = "gBFLBCJwBAEHhEJAAEhABRsIQAAYAQGKIYBkAKBQAGaAoDDUNQxQwAAxwfBMKgBBCLIxhEYobgmGIXRpFICQTIcBhaGIZRiAKCRTDmHwyRCNIwCLD8QxtDqBY4gOZZXh";
	var_s = var_s + "al4cJTgMaBYi+Pw3DZHcbvBRkewzHQAKgnSjoDhEMg1CTVVYTDKdOSzDyEX7sIAACpOIZQVJVEY1VT8cyxIyEZimSypWqiYJ0Ty6cQwTAIgI";
	expivot1.VisualAppearance().Add(1,COMVariant::createFromStr(var_s));
	expivot1.Background(87/*exColumnsFloatBackColor*/,0x1000000);
	expivot1.HeaderHeight(24);
	expivot1.HeaderAppearance(4/*Etched*/);
	expivot1.Import("C:\\Program Files\\Exontrol\\ExPivot\\Sample\\data.txt");
	expivot1.PivotRows("0");
	expivot1.PivotColumns("sum(5)");
	expivot1.PivotColumnsFloatBarVisible(32/*exPanelAsChild*/);
	expivot1.EndUpdate();
}
170
Change the background of the Columns panel (EBN color)

public void init()
{
	str var_s;
	;

	super();

	expivot1.BeginUpdate();
	var_s = "gBFLBCJwBAEHhEJAAEhABNoCg6AADACAxRDAMgBQKAAzQFAYahqGKGAAGOD4JhUAIIRZGMIjFDcEwxC6NIpAWLoJDCH4mSTHYxgJIMWwzDiBZgkCA4fiGEYnThCIxzTJ";
	var_s = var_s + "0aw1CKbYRAKCUKoUAJFsSnQAJIgOO4lULPMIhDDQKQTIKBahoehqIhaEQyDSJNb2DCIahhMSEbKtCooDhGFZUWzLVxTJJNawHJqJJDuOTpSjKH4+RjWFKUXR9b4BJSNA";
	var_s = var_s + "gqeCQTiSWZEVxRUS0XbGCyZLSQY7uAAMKgOVoDYzdGLwHTtOwrMa1QAsDSbKqWZ5uRpHcQ5aAGN5DPbMbqwOaqLznAaLQLtG4RTikVRPTDYaj437+OaHGyNbI6HTNPpT";
	var_s = var_s + "lWDJWjYXI8l8C4fg6GYAAEEISgGJJGHQOocgyIwYnqKhYAAIQTH2MYRjQJBRAmZptmEAYIjGU5dk8UgOFgBJUgCTQIBYBoBmCCAmAqApghgDJUDmYQFCCZoEk2OBUm+B";
	var_s = var_s + "ZPCgZgagaYZIHYHoHmGWBcm8NwiEiFJVgmYgji4Kg6GKSI2C6C5jAiRgygwIojiycINkyeJmAYPJjkiTg+g+ZAIkCdIQkyWQWDuDxkBkJhKguZAzlIRQzGQc5ODWFJlE";
	var_s = var_s + "kVhWhWZYJFYTYTmUE4yF6F5mAmBhihiZhJhYX4WmQaAUnWGpOlmNhuhuZwJkYcocmcSY4naHZlkmKhrDuJ5JnYfofmgCgGgKIJnlmXJ2h4TQKBosRokoNoOiOaQKDSd4";
	var_s = var_s + "kmiChMncPBpgoZoaiaaZKHaHonmmE5iiKJRpDicomimaoKiaKoqmqSoeiIPgogqPotiyaxKlYPA+GuCqbBMa5KnaPovmwCwGj6LgP24RIhiyCwmkqMpsksNpKD6LQLBq";
	var_s = var_s + "OIzi0SxWlaHZtAOahPssM5Wi+IYtlsXpijKbZ5lyTo5mAE4UlqOpjHOQpEjubyanKPJvEuNgVj2TY1CCao+k2G52AyP5wAwBp9DYZZ1CCaxsAABAEICA";
	expivot1.VisualAppearance().Add(1,COMVariant::createFromStr(var_s));
	expivot1.Background(87/*exColumnsFloatBackColor*/,0x1000000);
	expivot1.HeaderHeight(24);
	expivot1.HeaderAppearance(4/*Etched*/);
	expivot1.Import("C:\\Program Files\\Exontrol\\ExPivot\\Sample\\data.txt");
	expivot1.PivotRows("0");
	expivot1.PivotColumns("sum(5)");
	expivot1.PivotColumnsFloatBarVisible(32/*exPanelAsChild*/);
	expivot1.EndUpdate();
}
169
Change the background of the Columns panel (solid color)

public void init()
{
	;

	super();

	expivot1.BeginUpdate();
	expivot1.HeaderHeight(24);
	expivot1.HeaderAppearance(4/*Etched*/);
	expivot1.Import("C:\\Program Files\\Exontrol\\ExPivot\\Sample\\data.txt");
	expivot1.PivotRows("0");
	expivot1.PivotColumns("sum(5)");
	expivot1.PivotColumnsFloatBarVisible(32/*exPanelAsChild*/);
	expivot1.Background(87/*exColumnsFloatBackColor*/,WinApi::RGB2int(240,240,240));
	expivot1.EndUpdate();
}
168
Change the visual appearance of the Columns panel

public void init()
{
	str var_s;
	;

	super();

	expivot1.BeginUpdate();
	var_s = "gBFLBCJwBAEHhEJAAEhABNoCg6AADACAxRDAMgBQKAAzQFAYahqGKGAAGOD4JhUAIIRZGMIjFDcEwxC6NIpAWLoJDCH4mSTHYxgJIMWwzDiBZgkCA4fiGEYnThCIxzTJ";
	var_s = var_s + "0aw1CKbYRAKCUKoUAJFsSnQAJIgOO4lULPMIhDDQKQTIKBahoehqIhaEQyDSJNb2DCIahhMSEbKtCooDhGFZUWzLVxTJJNawHJqJJDuOTpSjKH4+RjWFKUXR9b4BJSNA";
	var_s = var_s + "gqeCQTiSWZEVxRUS0XbGCyZLSQY7uAAMKgOVoDYzdGLwHTtOwrMa1QAsDSbKqWZ5uRpHcQ5aAGN5DPbMbqwOaqLznAaLQLtG4RTikVRPTDYaj437+OaHGyNbI6HTNPpT";
	var_s = var_s + "lWDJWjYXI8l8C4fg6GYAAEEISgGJJGHQOocgyIwYnqKhYAAIQTH2MYRjQJBRAmZptmEAYIjGU5dk8UgOFgBJUgCTQIBYBoBmCCAmAqApghgDJUDmYQFCCZoEk2OBUm+B";
	var_s = var_s + "ZPCgZgagaYZIHYHoHmGWBcm8NwiEiFJVgmYgji4Kg6GKSI2C6C5jAiRgygwIojiycINkyeJmAYPJjkiTg+g+ZAIkCdIQkyWQWDuDxkBkJhKguZAzlIRQzGQc5ODWFJlE";
	var_s = var_s + "kVhWhWZYJFYTYTmUE4yF6F5mAmBhihiZhJhYX4WmQaAUnWGpOlmNhuhuZwJkYcocmcSY4naHZlkmKhrDuJ5JnYfofmgCgGgKIJnlmXJ2h4TQKBosRokoNoOiOaQKDSd4";
	var_s = var_s + "kmiChMncPBpgoZoaiaaZKHaHonmmE5iiKJRpDicomimaoKiaKoqmqSoeiIPgogqPotiyaxKlYPA+GuCqbBMa5KnaPovmwCwGj6LgP24RIhiyCwmkqMpsksNpKD6LQLBq";
	var_s = var_s + "OIzi0SxWlaHZtAOahPssM5Wi+IYtlsXpijKbZ5lyTo5mAE4UlqOpjHOQpEjubyanKPJvEuNgVj2TY1CCao+k2G52AyP5wAwBp9DYZZ1CCaxsAABAEICA";
	expivot1.VisualAppearance().Add(1,COMVariant::createFromStr(var_s));
	expivot1.Background(92/*exColumnsFloatAppearance*/,0x1000000);
	expivot1.Background(93/*exColumnsFloatCaptionBackColor*/,WinApi::RGB2int(246,246,246));
	expivot1.BackColorHeader(0x1000000);
	expivot1.HeaderHeight(24);
	expivot1.HeaderAppearance(4/*Etched*/);
	expivot1.Import("C:\\Program Files\\Exontrol\\ExPivot\\Sample\\data.txt");
	expivot1.PivotRows("0");
	expivot1.PivotColumns("sum(5)");
	expivot1.PivotColumnsFloatBarVisible(-1/*exPanelVisible*/);
	expivot1.EndUpdate();
}
167
Display the columns that users can group by or use for aggregate functions (child)

public void init()
{
	;

	super();

	expivot1.BeginUpdate();
	expivot1.HeaderHeight(24);
	expivot1.HeaderAppearance(4/*Etched*/);
	expivot1.Import("C:\\Program Files\\Exontrol\\ExPivot\\Sample\\data.txt");
	expivot1.PivotRows("0");
	expivot1.PivotColumns("sum(5)");
	expivot1.PivotColumnsFloatBarVisible(32/*exPanelAsChild*/);
	expivot1.EndUpdate();
}
166
Display the columns that users can group by or use for aggregate functions (float)

public void init()
{
	;

	super();

	expivot1.BeginUpdate();
	expivot1.HeaderHeight(24);
	expivot1.HeaderAppearance(4/*Etched*/);
	expivot1.Import("C:\\Program Files\\Exontrol\\ExPivot\\Sample\\data.txt");
	expivot1.PivotRows("0");
	expivot1.PivotColumns("sum(5)");
	expivot1.PivotColumnsFloatBarVisible(-1/*exPanelVisible*/);
	expivot1.EndUpdate();
}
165
ShowIdem {string}, specifies the symbol used to indicate repeated captions, offering a clear visual cue for identical entries. This property is effective only when the showBranchRows property is set to exBranchColumns mode

public void init()
{
	;

	super();

	expivot1.BeginUpdate();
	expivot1.Import("C:\\Program Files\\Exontrol\\ExPivot\\Sample\\data.txt");
	expivot1.PivotRows("0[bold],2");
	expivot1.PivotColumns("sum(5)[content=currency],sum(5)[content=currency]/12:A");
	expivot1.PivotTotals("/sum[bold,content=currency]");
	expivot1.ShowBranchRows(3/*exBranchColumns*/);
	expivot1.ShowIdem("<fgcolor lightgray>〃");
	expivot1.EndUpdate();
}
164
exBranchColumns + exBranchIncludeAggregate + exBranchRowDivider

public void init()
{
	;

	super();

	expivot1.BeginUpdate();
	expivot1.Import("C:\\Program Files\\Exontrol\\ExPivot\\Sample\\data.txt");
	expivot1.PivotRows("0[bold],2");
	expivot1.PivotColumns("sum(5)[content=currency],sum(5)[content=currency]/12:A");
	expivot1.PivotTotals("/sum[bold,content=currency]");
	expivot1.ShowBranchRows(51/*exBranchIncludeAggregate | exBranchRowDivider | exBranchColumns*/);
	expivot1.EndUpdate();
}
163
exBranchColumns + exBranchIncludeAggregate

public void init()
{
	;

	super();

	expivot1.BeginUpdate();
	expivot1.Import("C:\\Program Files\\Exontrol\\ExPivot\\Sample\\data.txt");
	expivot1.PivotRows("0[bold],2");
	expivot1.PivotColumns("sum(5)[content=currency],sum(5)[content=currency]/12:A");
	expivot1.PivotTotals("/sum[bold,content=currency]");
	expivot1.ShowBranchRows(35/*exBranchIncludeAggregate | exBranchColumns*/);
	expivot1.EndUpdate();
}
162
exBranchColumns

public void init()
{
	;

	super();

	expivot1.BeginUpdate();
	expivot1.Import("C:\\Program Files\\Exontrol\\ExPivot\\Sample\\data.txt");
	expivot1.PivotRows("0[bold],2");
	expivot1.PivotColumns("sum(5)[content=currency],sum(5)[content=currency]/12:A");
	expivot1.PivotTotals("/sum[bold,content=currency]");
	expivot1.ShowBranchRows(3/*exBranchColumns*/);
	expivot1.EndUpdate();
}
161
Displays a glitch funnel for drop-down filter buttons (empty or active)

public void init()
{
	COM com_Appearance;
	anytype var_Appearance;
	str var_s,var_s1;
	;

	super();

	expivot1.BeginUpdate();
	var_Appearance = expivot1.VisualAppearance(); com_Appearance = var_Appearance;
		com_Appearance.RenderType(-1);
		var_s = "gBFLBCJwBAEHhEJAAEhABa8IQAAYAQGKIYBkAKBQAGaAoDDUNQxQwAAxwfBMKgBBCLIxhEYobgmGIXRpFMbxCKQahLEiTIhGUYJHgmK4tRiAUgxVDkBxrECZYqjcBZOi";
		var_s = var_s + "wLQ2TxDM7DNKUCBnIoABhGOaYDh+IQNQjUFKwTRFGRxK4EIRKAyTDLQdRyGSMMbjdQpBCbMiMRqhESKRq2UwYRYCFS1NalaztO6BUAvK67YrWez/YBfF+SfwGeqDYReW";
		var_s = var_s + "APfgWERnQrGMLxbD8KwZAKTRjkGJ4XhuB41TbQMqufL9ByXHKSSDpGjaXjeO5VVjYNAvS69UzXNq3bhtQAOXCMEwCgI=";
		com_Appearance.Add(1,COMVariant::createFromStr(var_s));
		com_Appearance.Add(2,"CP:1 -2 0 0 0");
	expivot1.HeaderHeight(28);
	expivot1.Background(0/*exHeaderFilterBarButton*/,0x2000000);
	expivot1.Background(41/*exHeaderFilterBarActive*/,0x2000001);
	expivot1.Background(32/*exCursorHoverColumn*/,-1);
	expivot1.Import("C:\\Program Files\\Exontrol\\ExPivot\\Sample\\data.txt");
	expivot1.FilterBarFont(expivot1.Font());
	expivot1.Description(11/*exFilterBarAnd*/,expivot1.FormatABC("`<fgcolor=808080> ` + value + ` </fgcolor>`",COMVariant::createFromStr(expivot1.Description(11/*exFilterBarAnd*/))));
	var_s1 = "(( ( value replace `[<b>` with `<bgcolor=000000><fgcolor=FFFFFF><b> ` replace `</b>]` with ` </b></bgcolor></fgcolor>` replace `";
	var_s1 = var_s1 + "[<s>` with `<bgcolor=C0C0C0><fgcolor=FFFFFF> ` replace `</s>]` with ` </fgcolor></bgcolor>` )  + `<r><fgcolor=808080>` + ( match";
	var_s1 = var_s1 + "itemcount < 0 ? ( ( len(value) ? `` : `` ) + `<r>` + abs(matchitemcount + 1) + ` result(s)` ) : (`<r><fgcolor=808080>`+ itemcoun";
	var_s1 = var_s1 + "t + ` item(s)`) )))";
	expivot1.FilterBarCaption(var_s1);
	expivot1.FilterBarPromptVisible(2583/*exFilterBarCompact | exFilterBarShowCloseIfRequired | exFilterBarSingleLine | exFilterBarCaptionVisible | exFilterBarVisible | exFilterBarPromptVisible*/);
	expivot1.EndUpdate();
}
160
Can I use a control to generate the data and another to import data (sample 2)
public void init()
{
	COM com_Pivot;
	COMVariant d;
	anytype var_Pivot;
	;

	super();

	// Add 'expivot.dll(ExPivot.dll)' reference to your project.
	var_Pivot = COM::createFromObject(new EXPIVOTLib.expivot()); com_Pivot = var_Pivot;
		com_Pivot.Import("C:\\Program Files\\Exontrol\\ExPivot\\Sample\\data.txt");
		com_Pivot.PivotRows("0");
		com_Pivot.PivotColumns("sum(5)[caption=<fgcolor red><b>Total]");
		d = com_Pivot.Export();
	expivot1.Import(d);
}
159
Can I use a control to generate the data and another to import data (sample 1)

public void init()
{
	COM com_Fields,com_Pivot,com_rs;
	COMVariant d;
	anytype rs,var_Fields,var_Pivot;
	;

	super();

	// Add 'expivot.dll(ExPivot.dll)' reference to your project.
	var_Pivot = COM::createFromObject(new EXPIVOTLib.expivot()); com_Pivot = var_Pivot;
		// Add 'Microsoft ActiveX Data Objects 6.1 Library(msado15.dll)' reference to your project.
		rs = COM::createFromObject(new ADODB.Recordset()); com_rs = rs;
			var_Fields = rs.Fields(); com_Fields = var_Fields;
				com_Fields.Append("Code",8/*adBSTR*/);
				com_Fields.Append("Customer",8/*adBSTR*/);
				com_Fields.Append("Sales",5/*adDouble*/);
			rs.Open();
			rs.AddNew();
			rs.Fields().Item("Code").Value("M");
			rs.Fields().Item("Customer").Value("Jhon Doe");
			rs.Fields().Item("Sales").Value(COMVariant::createFromInt(1234));
			rs.Update();
			rs.AddNew();
			rs.Fields().Item("Code").Value("M");
			rs.Fields().Item("Customer").Value("Jhon Doe");
			rs.Fields().Item("Sales").Value(COMVariant::createFromInt(4567));
			rs.Update();
			rs.AddNew();
			rs.Fields().Item("Code").Value("F");
			rs.Fields().Item("Customer").Value("Jane Doe");
			rs.Fields().Item("Sales").Value(COMVariant::createFromInt(9876));
			rs.Update();
			rs.AddNew();
			rs.Fields().Item("Code").Value("F");
			rs.Fields().Item("Customer").Value("Jane Doe");
			rs.Fields().Item("Sales").Value(COMVariant::createFromInt(5432));
			rs.Update();
		com_Pivot.DataSource(rs);
		com_Pivot.PivotRows("1");
		com_Pivot.PivotColumns("sum(2)");
		d = com_Pivot.Export();
	expivot1.Import(d);
}
158
How can I replace or add an icon at runtime

public void init()
{
	COM com_Appearance,com_Column;
	anytype var_Appearance,var_Column;
	str var_s,var_s1;
	;

	super();

	expivot1.BeginUpdate();
	expivot1.ImageSize(16);
	var_s = "gAAAABgYACEHgUJFEEAAWhUJCEJEEJggEhMCYEXjUbjkJQECj8gj8hAEjkshYEpk8kf8ClsulsvAExmcvf83js5nU7nkCeEcn8boMaocXosCB9Hn09pkzcEuoL/fE+Ok";
	var_s = var_s + "YB0gB9YhIHrddgVcr9aktZADAD8+P8CgIA==";
	expivot1.ReplaceIcon(COMVariant::createFromStr(var_s));
	expivot1.ReplaceIcon("C:\\images\\favicon.ico",COMVariant::createFromInt(0));
	var_Appearance = expivot1.VisualAppearance(); com_Appearance = var_Appearance;
		var_s1 = "gBFLBCJwBAEHhEJAAEhABUYCg6AADACAxRDgMQBQKAAzQFAYbhkGCGAAGMZxRgmFgAQhFcZQSKUOQTDKMIziYBYfgkMIgSbJUgDGAkRRdDSOYDmGQYDiCIoRShOMIjHL";
		var_s1 = var_s1 + "UXxtDaIZwhEAoJb+RgAUY/cTzaAEUwHHiTKInaCQShsFYJUJAdRURQ9EwvCIZBpEWwLChENQwWLCNj2TScBwjCyqbale45ViqdoDU5EUiXJJ8ZxnECfYyrGjaMpCeKBU";
		var_s1 = var_s1 + "rGYTVRBIMxLLSia5oeJqMrnBpNVrIUgXCAGFwHK6BcauXIIDp6XoWWRbAAWDpVVzNNC3YzkCIceADHKiXxmVz4JLdGZ1QTGID2XaYaxWK4oZjsVSc4KDHbETbHFi9Fo3";
		var_s1 = var_s1 + "NaaxGisew+GYc4HlCR5NAAAIIEkQJSGMOgdE4RhYDwJJsAaAYQgmPpolCWgSCiBJzjcEIAkQXIBm8d5UhOQgCDUIBDDJDhgggJgKgKYJIDSVoDk8KBFF4OohEMZgWDsY";
		var_s1 = var_s1 + "YDj4GoGmGSB2B6B5iAiBgYDsYRjGSbIJo4RgqDuIpIAoLoLmMCJGDKDJjJiLA7xqUAAgGTwYnYPoPmQCQGEKEJkEkFg9gGY44BoRoSmSSQ2EKEggHgRhShSZRJFYVoVm";
		var_s1 = var_s1 + "WCRmFKFAgGOTheheZgJgYYoYmYSYWGaF4lkMMJ0hqZpJjYbobmcCZGHKHJmjmJh0h2Z4JmYcIaE8WZ2H6H5oAoBoCiCaBKBYfdjGoJoKiKaJKDaDojmkChGgmIgpCoVo";
		var_s1 = var_s1 + "WiWaJZiSd4mmmSh2h6J5qAqBoiiiaY5iSeIpmqComiqKpqkqNouiuah6hqMIsmsSpWiuGhP1kOoumuSp2j6L5sAsBo54gKwWkaMZsgsJpKjKbJLDaRYxYWRpSjSbIZiS";
		var_s1 = var_s1 + "e41m2CxmlqNptksdpejebR5iSfI4m4S4W16boLiaao6m5fJ9jubwLkaco8m8S5WnaPZunuOp4j6b5Lnac4SA0PAGlgP4wEwFwGkGcIMCcCpCnCCxiA8NYAAmMJfkSbhF";
		var_s1 = var_s1 + "CcFpFnGDBnBqRpUhuEwTDeZ5lHCfw6HIQxLCaAxygyJwqgGcATE4FA6hWY4tjEAAQBAgIA==";
		com_Appearance.Add(4,COMVariant::createFromStr(var_s1));
	expivot1.BackColorHeader(0x4c6c6c6);
	expivot1.SelBackColor(0x4000000);
	expivot1.SelForeColor(WinApi::RGB2int(0,0,1));
	expivot1.Background(20/*exSelBackColorFilter*/,expivot1.SelBackColor());
	expivot1.Background(21/*exSelForeColorFilter*/,expivot1.SelForeColor());
	expivot1.Background(26/*exBackColorFilter*/,expivot1.BackColor());
	expivot1.Background(27/*exForeColorFilter*/,expivot1.ForeColor());
	expivot1.Background(32/*exCursorHoverColumn*/,-1);
	expivot1.Background(0/*exHeaderFilterBarButton*/,0x4000000);
	expivot1.Background(41/*exHeaderFilterBarActive*/,0x4010101);
	expivot1.Background(1/*exFooterFilterBarButton*/,0x40000ff);
	expivot1.HeaderAppearance(4/*Etched*/);
	expivot1.GridLineStyle(512/*exGridLinesGeometric*/);
	expivot1.Import("C:\\Program Files\\Exontrol\\ExPivot\\Sample\\data.txt");
	expivot1.PivotRows("12,0");
	expivot1.PivotColumns("sum(5)");
	expivot1.PivotTotals("/sum");
	var_Column = COM::createFromObject(expivot1.DataColumns()).item(COMVariant::createFromInt(0)); com_Column = var_Column;
	com_Column.FormatImage("1");
	expivot1.EndUpdate();
}
157
Rename the caption of a generated column

public void init()
{
	;

	super();

	expivot1.BeginUpdate();
	expivot1.HeaderAppearance(4/*Etched*/);
	expivot1.HeaderHeight(24);
	expivot1.Import("C:\\Program Files\\Exontrol\\ExPivot\\Sample\\data.txt");
	expivot1.PivotRows("0");
	expivot1.PivotColumns("sum(5)[caption=<fgcolor red><b>Total]");
	expivot1.EndUpdate();
}
156
Computed-columns support

public void init()
{
	COM com_FormatContent;
	anytype var_FormatContent;
	;

	super();

	expivot1.BeginUpdate();
	expivot1.HeaderAppearance(4/*Etched*/);
	expivot1.HeaderHeight(24);
	expivot1.GridLineStyle(512/*exGridLinesGeometric*/);
	expivot1.Import("C:\\Program Files\\Exontrol\\ExPivot\\Sample\\data.txt");
	expivot1.Background(212/*exColumnIndexColor*/,WinApi::RGB2int(128,128,128));
	var_FormatContent = COM::createFromObject(expivot1.FormatContents()).Add("Cptd","(%1/%2) format `` replace `.00` with ``"); com_FormatContent = var_FormatContent;
	com_FormatContent.Visible(false);
	expivot1.PivotRows("0");
	expivot1.PivotColumns("sum(5),count(0),count(0)[content=Cptd,caption=<b>Computed(=1/2),bold]");
	expivot1.EndUpdate();
}
155
Show the index of each (generated-)column

public void init()
{
	;

	super();

	expivot1.BeginUpdate();
	expivot1.HeaderAppearance(4/*Etched*/);
	expivot1.HeaderHeight(24);
	expivot1.GridLineStyle(512/*exGridLinesGeometric*/);
	expivot1.Import("C:\\Program Files\\Exontrol\\ExPivot\\Sample\\data.txt");
	expivot1.Background(212/*exColumnIndexColor*/,WinApi::RGB2int(255,0,0));
	expivot1.EndUpdate();
}
154
The fine dotted lines in the control appear much thicker than the standard ones we've been using. How can we fix this

public void init()
{
	;

	super();

	expivot1.BeginUpdate();
	expivot1.GridLineStyle(512/*exGridLinesGeometric*/);
	expivot1.Import("C:\\Program Files\\Exontrol\\ExPivot\\Sample\\data.txt");
	expivot1.EndUpdate();
}
153
Are there any properties to set text margins at tooltip, like Margins="5,5" (method 1). Margins is used to get some space between text and the tooltips border

// MouseMove event - Occurs when the user moves the mouse.
void onEvent_MouseMove(int   _Button,int   _Shift,int   _X,int   _Y)
{
	;
	expivot1.ShowToolTip("new content","",,"+8","+8");
}

public void init()
{
	;

	super();

	expivot1.ToolTipMargin("16,8");
}
152
How can i set the sort order of an aggregated column with code

public void init()
{
	COM com_Column;
	anytype var_Column;
	;

	super();

	expivot1.Import("C:\\Program Files\\Exontrol\\ExPivot\\Sample\\data.txt");
	expivot1.PivotRows("0[bold]");
	expivot1.PivotColumns("sum(5)");
	var_Column = COM::createFromObject(expivot1.DataColumns()).item("Freight"); com_Column = var_Column;
	com_Column.SortType(1/*SortNumeric*/);
	expivot1.Layout("singlesort=\"C1:2\"");
}
151
Force hover-all feature
public void init()
{
	;

	super();

	expivot1.Background(500/*exScrollHoverAll*/,-1);
	expivot1.Import("C:\\Program Files\\Exontrol\\ExPivot\\Sample\\data.txt");
}
150
Disable hover-all feature (Windows 11 or greater)
public void init()
{
	;

	super();

	expivot1.Background(500/*exScrollHoverAll*/,WinApi::RGB2int(1,0,0));
	expivot1.Import("C:\\Program Files\\Exontrol\\ExPivot\\Sample\\data.txt");
}
149
Display a custom tooltip
// MouseMove event - Occurs when the user moves the mouse.
void onEvent_MouseMove(int   _Button,int   _Shift,int   _X,int   _Y)
{
	;
	expivot1.ShowToolTip("new content","",,"+8","+8");
}

public void init()
{
	;

	super();

	expivot1.Import("C:\\Program Files\\Exontrol\\ExPivot\\Sample\\data.txt");
}
148
Shows the tooltip of the object moved relative to its default position
// MouseMove event - Occurs when the user moves the mouse.
void onEvent_MouseMove(int   _Button,int   _Shift,int   _X,int   _Y)
{
	;
	expivot1.ShowToolTip("<null>","<null>",,"+8","+8");
}

public void init()
{
	;

	super();

	expivot1.Import("C:\\Program Files\\Exontrol\\ExPivot\\Sample\\data.txt");
}
147
ADOR, MDB (JET)

public void init()
{
	COM com_rs;
	anytype rs;
	;

	super();

	// Add 'Microsoft ActiveX Data Objects 6.1 Library(msado15.dll)' reference to your project.
	rs = COM::createFromObject(new ADODB.Recordset()); com_rs = rs;
		rs.Open("Data","Provider=Microsoft.Jet.OLEDB.4.0;Data Source=C:\\Program Files\\Exontrol\\ExPivot\\Sample\\Access\\sample.mdb",3/*adOpenStatic*/,3/*adLockOptimistic*/);
	expivot1.DataSource(rs);
}
146
ImageSize property on 32 (specifies the size of control' icons/images/check-boxes/radio-buttons)

public void init()
{
	COM com_Appearance,com_Column;
	anytype var_Appearance,var_Column;
	str var_s,var_s1,var_s2,var_s3,var_s4,var_s5;
	;

	super();

	expivot1.BeginUpdate();
	expivot1.ImageSize(32);
	expivot1.DefaultItemHeight(36);
	expivot1.HeaderHeight(expivot1.DefaultItemHeight());
	expivot1.Font().Size(16);
	expivot1.FilterBarFont().Size(expivot1.Font().Size());
	expivot1.ToolTipFont().Size(expivot1.Font().Size());
	expivot1.Indent(26);
	var_s = "gBJJgBAIDAAEg4AEEKAD/hz/EMNh8TIRNGwAjEZAEXjAojKAjMLjABhkaABAk0plUrlktl0vmExmUzmk1m03nE5nU7nk9miAoE+oVDolFo1HpFJpU5h8Sf9OqFNqUOqN";
	var_s = var_s + "UqdPq9VrFWrlbr1QpdhAFAkFis1ntFptVrtkrpszrNvmVxqk3uVtm1kmF3sdBvF/wGBmV+j9BYGHwWJulfxdax2NyFdx2JlV6l9Nw7AAGZymdz2Cy2GxErvWcz9ivlwy";
	var_s = var_s + "V21cuxugwktzGIzmvwtl0+53U5y0a0Wazmmyu/3dCyOMyXHx/J5nIr9q3uyqnBxFN3G46ma4vb7mD2Ng4nZze00fDkHC7t7us2rOX5tguetpHRlmz4HVqnXk1PjHO+CM";
	var_s = var_s + "Po9MBMC+j2vC8j7wS8cFNI4kBo05UIvfCT/NsnsApU+0Fqg/T+oy/kPxC0sEQfErKQK96+w28UWRI8UGvO8sTLS9r2PWmsMJTDTask3CsIbIEQRA3shOXEEAO/GclJ9F";
	var_s = var_s + "EKrrA8FRbKMXRIlb0JxCkjS1LMswhCcvuel0cv26cSMa8Ufx+2sQwhEUoSXOCjSbLcnxjKc7sdKUVyq28NtVI71P9P7JxtQEapjQ6fzfM8zPfNE2PhIsLL63E40slk5y";
	var_s = var_s + "7N89LcyU9SvMb3SdUc6VJLj5VLVLfO/PS9KzNFHUa/0XyBD0dxlS9cxhMlTRSoNXypPErWDPyfNS+MwprRNO0FD8wVVZ1AI08URwVRjtJ1WCn21QkkUrXVLVPQS/XIkF";
	var_s = var_s + "gTxT9iONZ9xVTdq+L1eKg3kkF6Upe68XtfV51/MtrVjBlwYFL1ev8y1/P6/lyzzYl02wntj0RVFmS1Qa+M5as93QxEUW9e993rfmQ2+vy65M/mL1lhl/2bj2ByVduMtN";
	var_s = var_s + "hCJT9hdz41nN14Ld12Z9UjfI/oUAaGseiw6+uFLLhcVabJOS5RqOE0BHlZ5VnEr5fOMs3st+aa/bbRzrJGV51Y0b0DbqaWXZD90hIsPbjWu52+6Wyadpe66hhO+P/Xio";
	var_s = var_s + "W5rD8ZbrUZuVg6n1dsE/cXmewu1m9PVwnd35/nueXho/NaJzmjc61W76esuT77eG8pTquy9TwWH8LEzG8RDfFalx3Gcfvna9rvG/cptGLd9tuI6TZOP5Fiqi99vea+X4";
	var_s = var_s + "VRcBq/JZZtVQ9cwSs5lsXE372+a9z7PbfB3VVqHyvMctLto8uob6eV0m/cD6MN2v+T33t6sBut42vdv2bJ8a997x2maFJfK+qArbGJPEKE+1qTflMsIdW/GCJX17KcT6";
	var_s = var_s + "/czr/X+u1g29B7j/4BQfWkkx4zIHisjhPCmE0K4SwtXM+d4BvHRwNZOoBph9IJvPek9d40FoMJxf691jj2ywQQcHEWET4XJwkTszlVqm2GokewxtBT1DpQjRxDN0rUVD";
	var_s = var_s + "NKdC3lb6tzNOwh6upMSSYfv4YBCl/bsn9PxiFCEo7SI6Obc9HeOrnY8x4jtHtdpN4GRbaorhsbu18Pph5CiHymI0RpSXGJ/z2oUOxYxG858AyiI+bfJtuTcG5yelBJyT";
	var_s = var_s + "8okhqFd4a5yxL0rvulYtKCsZiWxWkc1s1cRoxxwhA31DLE0mR9l9HqX8fJgTDmFMVH0MIsRzVYnwnMi1dyzmhLt2kS2pxIiU62Wj5ptQGlSYFakLonTUJNLKaM5Wzlff";
	var_s = var_s + "EkuFkk5wTrhVO2eE7G6lJhxFFYUZ55zmn0WuBCD4pzhirFCKkbomsOoIYmZx5p90LoYWGPdD5g0QmJRKYxbZ6zYoVQ2jVGylSak7KSkFH6RSjpHKFuU+YMyNo5SulkC6";
	var_s = var_s + "I0vonTCitMXPoEpVS2H5FQfEqp2R1opIgAEkJISYARTCukOhmPNI5Ex/wzGHUsicMwA1LHgQ90Y/KpoQHAD+pB/R4NzIaMAB9Xaw1gqaAOsh/A/ptIkWUfhGK1kZH8Rg";
	var_s = var_s + "H5GqvgArqRmt4AAPrTroRofBGADkqr6Rmu4D7CEaHARiwpJrEEZsXXwlVjyMWRsaRqwdkLGNBABZmytmyMnaINZqyVpLR2ftKAAAdd6h2osbaskdiq4EZtgSmyNcbVWR";
	var_s = var_s + "JNXe3AA7REar3b0stlAAXBtoRmvJGLjEYAHUWsFcwCD/rnaop9aEICMAPdK5hT6xpeuzdOtAgKuJeGfdq6ggEbkTvAP+p9UCHXrvKkcgIA==";
	expivot1.Images(COMVariant::createFromStr(var_s));
	var_Appearance = expivot1.VisualAppearance(); com_Appearance = var_Appearance;
		var_s1 = "gBFLBCJwBAEHhEJAAEhABfICg6AADACAxRDgMQBQKAAzQFAYbhkGCGAAGMZxRgmFgAQhFcZQSKUOQTDKMIziaQAGgkNQwCSLIwjNIsBxPFKVQChEYxSjKA40SJNUgyj6";
		var_s1 = var_s1 + "CCY+QLIE5PfQgAL9I6eJABCCSQKkYx0HScRiwPBIbAZAYhCZqaKhWgkKI/WBQIABRDVLx5ESiLRtKy7Mq2bpvXBcNxXHalaztO68LxvKyqHb5fJ/PpgL4YHgmC4NQ7EM";
		var_s1 = var_s1 + "RwF6rfbyfZ7Xg/ORPTijZ4sdzMHTzJyscx3HqfaBoOaZU5eMLceTUMofHIndxCcasPbsOatVqjG5sYjcGC3La9cz3Pq/bpuDCbMxuaK1TrYXr1TTrcofBDldAxXRKDxR";
		var_s1 = var_s1 + "DWVhLnYOw9i6XxzjuXprCaOoKB6EwbiCZZCGOdZYlcT4xHmbhMnwNxtn+G5bmqdZ7n4Pw/i+X5zm+dQ9g4CAFjsfAJheOI8HsDoWDWTB/lwSAQkmA5PEgRYoDyDwYFYF";
		var_s1 = var_s1 + "oFmGCBmBqBphDgRJ0gOTIYBGRB/lyRh0iSCZbjYWJzgWDwIjYLoLmMCJGDKDJjBgWgqG6YhyhGHRzA2aJ1mCABOAiOJvhCZBJBYRoRmSCQmEqEQimkAZgg8TZnDCV4Uk";
		var_s1 = var_s1 + "mCUmBKZYJGYWoWCUUhiFMNZckNUh2GENoaGaGZmgmJhqhqZpGGIEx2GYIxSGGGJdggWJth2Z4JmYeoemeSZ2H6H4hGmQhihyTRHGYLg7CiCgmgqIpokoNoOiOaJ4jqAo";
		var_s1 = var_s1 + "chqaZGgaCxpAoZoaiaaJqEmWIcGgShcnCJwqEqFoR3YOoFlgchflqNouiuawHmWSYqGkWZQhcatzmaOoumuSp2j6L5bBaKo0GQKRnGGCxqiyCwmkqMpsksNpOGUGI7A0";
		var_s1 = var_s1 + "ew1G0Rxlg0PptgsZuDG2Sx2l6N5tnYNZZjUDRXDCVo5l2FoymqOpukuNpujubwLjmWY5k0ZwxkaFxYlWdp6j6b5Lnafo/nABQdg2FxcUsY5BkmXAkmeQpckwNRrkKTh8";
		var_s1 = var_s1 + "CSHZBk4NwyC4KxxgMDwakOMZDn8GgwnGAo2C4cwthMcwmCcMoHBMHRehwTIghySYNksZwcH4HBMEsHx5hyPItiweYxnwSZEH4Mozn0fR+DMAo7EYJ50gkdZelKdNql2U";
		var_s1 = var_s1 + "gJn0GIukwH4HicQRai2GI4mSVpNl0dZGledgNgcYpYDWUx3FsOQi5YV5anaTY3G6W53A2RxylydxFjiaxEFCCgBBAQ==";
		com_Appearance.Add(1,COMVariant::createFromStr(var_s1));
		var_s2 = "gBFLBCJwBAEHhEJAAEhABcoFg6AADACAxRDgMQBQKAAzQFAYbhkGCGAAGMZxRgmFgAQhFcZQSKUOQTDKMIziaQAGgkNQwCSLIwjNIsBxPFKVQChEYxSjKA40SJNUgyj6";
		var_s2 = var_s2 + "CCY+QLIE5PfQgAL9I6eJABCCSQKkYx0HScRiwPBIbAZAYhCZqaKhWgkKI/WBQIABRDVLx5ESiLRtKy7Mq2bpvXBcNxXHalaztO68LxvKyqHb5fJ/PpgL4YHgmC4NQ7EM";
		var_s2 = var_s2 + "RwF6rfbyfZ7Xg/ORPTijZ4sdzMHTzJyscx3HqfaBoOaZU5eMLceTUMofHIndxCcasPbsLpOS5LNKsaxmWLYdhFdTxQi6LpvfA8BwXC6JY7heRYRbFbYxRjGNi1TS7G4n";
		var_s2 = var_s2 + "GKd5WGuL4UHwI4VkaYxii8V4pgQMgVBQdQ5iCTYGi8T4vlWbJ3nuPg+l+H5AlSCg6ByPBoE8Ap3jqYxhBido5g0OgOGOGI4CsSpCCAcgcAuEokiEN5NCKfJ9DyTRjnSc";
		var_s2 = var_s2 + "g1CEYxOBmBpPCgagdgcIZoHoGIFA4AxQkCAxKAgKBwgGSpIBCZhjF2E5UnQPQMiMCJBCIBwxkSQgsgo+JtDKT4ziiQw+k6EwAnsOgLnkHI+yCQ4iEuE4klkPhShEJBpA";
		var_s2 = var_s2 + "oPgymOMoaDgHBjFMBgyD0HYTiCZSZhIIIGC4ChiHSew5kwM5omILZPiOBI0hwZw5kodIdA+M4Uj4PxOmMSJ9DuTQzmyZgviceZagaHVfj4awwmaAh2GUIYmCOEZZDaDR";
		var_s2 = var_s2 + "DFGdwcg4EwyHMN4LBOaJbCoaZqgKH8qkMfIyD8DozDyfA7A0Coui0OpMmOZJdCsahKg6NooioChwmEMxLEoXJbDUTRXGSUgykyMgQG0GpPHMdI3D4TRCgSeQ0kmaw+lG";
		var_s2 = var_s2 + "NAtCOZJVCiT5DhyRQwAqMg0EoDBBGEGAsASC5yiSCw+k4Mp6lWNQuksTpRjMTxDGzJwGmGMpDDKXYTECSAxl6Q5olkK4PgMMIVkASRMBMBgzEkaZEjsNALhIZA6AeQBg";
		var_s2 = var_s2 + "k0ZJEgAAJ0CIAgODMNIsD6DRih9uYwFyAwfCUb5ijmbI+gwdxkk8MZMGeMpPCkDxzBiC5MHMPJLDSSROFMLIoBEQogEMFJPnENYQGgE4DCOaJfC7tYkhGTQ0kyWwykuX";
		var_s2 = var_s2 + "pMiyRpKjKR4wngM4JmOWJACCdYtHMWw+Eych4nINYLAEYA8AgdAEEsQZajaQoog4GxPiMVIolcdxNG8XZVkmNoRwWRVBlFeFEeAZQJgnFiHgHwcAhjhHgGMSI5xki2Cy";
		var_s2 = var_s2 + "A4EQsA3i0HkBsLwKRFgAHcPkHopBJBcBeDUYI7xyDOHqKkWo2hLCsDIBIY4qQ5A8DoMMYwOAqCSBGKgU4yB2iDBwIgB4hxQgAAWNgBoAgsBdEcBUQ4sQ9A/HqD0JI8Rp";
		var_s2 = var_s2 + "BzH2OYVgahLBHFiJQJweQiDhDUE4SAARQAzFsG0EQwA6AOWSBkFgVAIBCHeGERQFQiCQHeFkC4vkiB8DyB4F4QxVDvGMNEOQexMjlBeOAKQiQLgfDA7QEAaRiBdEkH8T";
		var_s2 = var_s2 + "I7AZiFBAGYBIABWjYBiGACioQ4C1A+AMMgWhfgxHgPsT4URIB0COKgPgjRwiAB8AYUArxBgCF6J4GY5hrAOCAPAAoGRRCsCIMEXATXfgAF8BMJwURuEQDgD4Q4OBoAeH";
		var_s2 = var_s2 + "GFgLIwQrC2D0JoSQ+QvhrHoSgQI8AbDFGID8C4Ah6BQAQAASACwgCYCMAUMARAvCKAiAMCAokeCKBEOAKgCBoDaHuMsEAqwJDiACDURg8R6gPCyDofYWAhgoDIJ4ZAuh";
		var_s2 = var_s2 + "oiGAYGgRoQw/A0GMMga4GwxiEDeIYYInATCDBQAoBAwAoDlA0KMBoVRGiDGwDQUYIRsgaGGDgM4LAwDWB8EcIA1APhjEgGQVwgRIgjFIIQHokgZA+CSEkLIKQSjHAwMs";
		var_s2 = var_s2 + "CwDAsAEB2ABTIwRwD6A8CMToSxkAxE4HYIw+BsgbBEDAHYBwojCBoIYFgXSjABE4MsHIbQWhlGILQS4UhvBdAUKEEwHgxDAAABQQQUAhgKHiDwE4JS4A7BGLQZwCR4ga";
		var_s2 = var_s2 + "BEMUYAqgKApHgGwVAIRNgvBMMQXImwZDtE4I8UIyAZCDCAE8AwrhgAdEEBACQLRCg4FEB4AYtA7CdEiPQMoJAMDNCkOMCAXAFDhH0D0Q4EgfAaGSK4NYzRUj9BuCgAgs";
		var_s2 = var_s2 + "wOBjB4Fqpw8B2ADAwE4A4Qx2DAE6JIaQPQGhAGKBcIQ5B5gHByKIFARwADbAyKUfgdBKBBGyEcVIAB/ijHoIoSA0gdBNl+OATYERZgBGSDYWIWAUCEGKA4FAhR7CIBtY";
		var_s2 = var_s2 + "QGYZg4CMAiKEcAOwkBjHWE8Z4lQgA+DkBoTohwwCeAaMEEgBQCCABgHMRwQRhhMEWFQd4HwZgwDqFESItAbAGEANCpINAzANCCJkK4ah+heFYBURwsQrS2CsMYMoWGBh";
		var_s2 = var_s2 + "YDWI0EInQgiApXaOVI1QFDsC8MUNoMBMA1HMJga4eh+BeAWOgNNowGjYzCGAAwax+iJBeBVT4gxoBIAGFsJFBxgBiGKFkKQ7g5DFFQEcAo4AzDDACKEQQLgCiJDYB0Mg";
		var_s2 = var_s2 + "RBCCQAgQEA==";
		com_Appearance.Add(2,COMVariant::createFromStr(var_s2));
		var_s3 = "gBFLBCJwBAEHhEJAAEhABQ4Fg6AADACAxRDgMQBQKAAzQFAYbhkGCGAAGMZxRgmFgAQhFcZQSKUOQTDKMIziaQAGgkNQwCSLIwjNIsBxPFKVQChEYxSjKA40SJNUgyj6";
		var_s3 = var_s3 + "CCY+QLIE5PfQgAL9I6eJABCCSQKkYx0HScRiwPBIbAZAYhCZqaKhWgkKI/WBQIABRDVLx5ESiLRtKy7Mq2bpvXBcNxXHalaztO68LxvKyqHb5fJ/PpgL4YHgmC4NQ7EM";
		var_s3 = var_s3 + "RwF6rfbyfZ7Xg/ORPTijZ4sdzMHTzJyscx3HqfaBoOaZU5eMLceTUMofHIndxCcasPbsLpOS5LNKsaxmWLYdhFdTxQi6LpvfA8BwXC6JY7heRYRbFbYxRjGNi1TS7G4n";
		var_s3 = var_s3 + "GKd5WGuL4UHwI4VkaYxii8V4pgQMgVBQdQ5iCTYGi8T4vlWbJ3nuPg+l+H5AlSCg6ByPBoE8Ap3jqYxhBido5g0OgOGOGI4CsSpCCAcgcAuEosiYN5NHMOJ+D4TpTnSe";
		var_s3 = var_s3 + "Q7CEY4uBmBpPhgagdgcIZoHibIEyUBJZDQIJShoCgcCAcoyAQOYYlcZJ1D0DxDCiQgwEiAZMHEMJLFKPJ9D2DoDnidQ4k+Y5QmKEROBkIhKD0JIZDIS4TGUCQuEeEJjn";
		var_s3 = var_s3 + "OIg8CuY4RkYNgwGMM5RllGpThDRYIGKZIpCkJFUH0PINyWcQ3CaaZCG+HBnEOTJhD8Tx4GoeQ/GcaZSHOH5nCmQhshoZhihYYwhiYA4RlkNoNEMUZ3ByDjwEsPxOnMaJ";
		var_s3 = var_s3 + "9DuDR6F6GYmCmKh0nANtMioP4Gg8aoSiIO5NhodociqaY6GaFYkEyOg8lsNRNTaUgykyMgQG0GpPiONJbD8DpDEyfA6k0KwOkWMQsGsAJU0SagwkoJQJDIPISCQCJTGS";
		var_s3 = var_s3 + "UwyGaM4KkmMgtksHpFjAZ4TGCBAbgaSpcksdhNAMIJHHsD5TjSWWMAMOpwjyLwbk6cAz0KRJiDkDYzESCwiggcgcgYIQwCIEINCMCITj6TVxkMXp2j0cQLlCTo7E2F4y";
		var_s3 = var_s3 + "mkMZdhMPJHDGHpLAyVg+k4UwrCCSIyByDJ8DuDY8CiWY0kiXAXC6QJwFKGIjCeJpjgyezjlyDw6klHx5myRoMGwZwbkcToTEiew4kwbQfEmUgPkOKJUD4DpTHSHQmgkX";
		var_s3 = var_s3 + "I/ASTA1g0XIEDMTBimyfI7jSLYHEiUoPk0Fw/kadAsHGao8A0A5smEMJ2mNyg5gzJZwDgCpChyIZVyIZwFCMJEPASRkBqE+IcHInRcDxA2H4bIsx0AtDsIBpwZwYicD6";
		var_s3 = var_s3 + "BscwDwUBgHCIYaIfgtiVH2O4WgUwJjEFeAEQA7y4hMCiBMS4aRdB9A4CYE4LxljyBMHcDItBxinDCLcTYmgejBFQ9UTg9gFBOEmAQTI7A4iZGMGkQAWQ7jYA2HIL8BRA";
		var_s3 = var_s3 + "jDG4HcCwARbjZHiNoDw1nLDnGyNINQ+wjCpBMEgcovQUgICQJEcgWRuBvAyJ4d4ugpCUAINcHogxIgnDiM4N4axzD3F2JMTY/hRqYF6FsWIxhYAGGoAALQYgYirBwBEB";
		var_s3 = var_s3 + "wpAjBEAAIEIYsA2gOHCMAGgXAACIDmMITAUgFABH0D0I4WwvhNFGMAOIvxRD2GKNcMA8gjAPDCPwBogRPAxA8PgRwZRICYDED8RAXQEghEAN8DIgwIBdB4JYWwMgtiQH";
		var_s3 = var_s3 + "oFQKAiRFguFKGwGQhglDsEOVwEQQRkCKBwOIHgSREDRBYHEXQcQdD7GIGARQHRxipBrMobgewDCUCADsEYWAzgMHKHQDQxxsDzA6EMfAeQHB4GQDkUYPA0iECiKoGgRh";
		var_s3 = var_s3 + "cDdA2GMQA8AOCjDSPgHI4QnApAKBICwHg1A+BcAwcYsgbjGGQNkCIgRsA6EcBEWANADjsB0B8YYzQQDIGSBcEYZBCCPEkFIHQSgkgZAwG4IwBAbAYGGAgL4Ch4g8BOCQ";
		var_s3 = var_s3 + "AA2KKC0GcAke4AAXAFCoHkDw4xbBFEcJkE4JRSiEFeJYKQVRMgJHODwX4xAgC/AsIIZAeAHDRG0HYI40RKCLEGDUI4jAghwBWIceA+whCpHMFYZYOQxglDMHMBQGxYjV";
		var_s3 = var_s3 + "HiAoBIPgfgHGwPsHYJRSB6A0IERQLhCjJHMA4OQoAoCOACLYGYSx8DpBQIMWQdRnDRH+DsE4fB3CeAmM67kAAXBFEIDYDI7wLBtEoEIfYNwjiUGGJQYQMAjCHEAO0C4z";
		var_s3 = var_s3 + "xW29CoCgfIxR9AKA6J8BgUAIhDGMIoJ40hqgwCgKETgnBhhqCGI0AIqgZhGDANQDIlBDCRGkCoJISR0g1BSKQOgfAzBRG0DYHARh4DeDAOwANuw8ApCKKkYg/RPhjBsH";
		var_s3 = var_s3 + "0J4yg5hPGWN0GwFBHQBFaDoQIURljFAoB4GgzRVzbBECQFQRQoguHGHANwDRdCKy8CgSIGwhhoDYJYYI1giBICSAEgI=";
		com_Appearance.Add(3,COMVariant::createFromStr(var_s3));
		var_s4 = "gBFLBCJwBAEHhEJAAEhABUYCg6AADACAxRDgMQBQKAAzQFAYbhkGCGAAGMZxRgmFgAQhFcZQSKUOQTDKMIziYBYfgkMIgSbJUgDGAkRRdDSOYDmGQYDiCIoRShOMIjHL";
		var_s4 = var_s4 + "UXxtDaIZwhEAoJb+RgAUY/cTzaAEUwHHiTKInaCQShsFYJUJAdRURQ9EwvCIZBpEWwLChENQwWLCNj2TScBwjCyqbale45ViqdoDU5EUiXJJ8ZxnECfYyrGjaMpCeKBU";
		var_s4 = var_s4 + "rGYTVRBIMxLLSia5oeJqMrnBpNVrIUgXCAGFwHK6BcauXIIDp6XoWWRbAAWDpVVzNNC3YzkCIceADHKiXxmVz4JLdGZ1QTGID2XaYaxWK4oZjsVSc4KDHbETbHFi9Fo3";
		var_s4 = var_s4 + "NaaxGisew+GYc4HlCR5NAAAIIEkQJSGMOgdE4RhYDwJJsAaAYQgmPpolCWgSCiBJzjcEIAkQXIBm8d5UhOQgCDUIBDDJDhgggJgKgKYJIDSVoDk8KBFF4OohEMZgWDsY";
		var_s4 = var_s4 + "YDj4GoGmGSB2B6B5iAiBgYDsYRjGSbIJo4RgqDuIpIAoLoLmMCJGDKDJjJiLA7xqUAAgGTwYnYPoPmQCQGEKEJkEkFg9gGY44BoRoSmSSQ2EKEggHgRhShSZRJFYVoVm";
		var_s4 = var_s4 + "WCRmFKFAgGOTheheZgJgYYoYmYSYWGaF4lkMMJ0hqZpJjYbobmcCZGHKHJmjmJh0h2Z4JmYcIaE8WZ2H6H5oAoBoCiCaBKBYfdjGoJoKiKaJKDaDojmkChGgmIgpCoVo";
		var_s4 = var_s4 + "WiWaJZiSd4mmmSh2h6J5qAqBoiiiaY5iSeIpmqComiqKpqkqNouiuah6hqMIsmsSpWiuGhP1kOoumuSp2j6L5sAsBo54gKwWkaMZsgsJpKjKbJLDaRYxYWRpSjSbIZiS";
		var_s4 = var_s4 + "e41m2CxmlqNptksdpejebR5iSfI4m4S4W16boLiaao6m5fJ9jubwLkaco8m8S5WnaPZunuOp4j6b5Lnac4SA0PAGlgP4wEwFwGkGcIMCcCpCnCCxiA8NYAAmMJfkSbhF";
		var_s4 = var_s4 + "CcFpFnGDBnBqRpUhuEwTDeZ5lHCfw6HIQxLCaAxygyJwqgGcATE4FA6hWY4tjEAAQBAgIA==";
		com_Appearance.Add(4,COMVariant::createFromStr(var_s4));
	expivot1.BackColorHeader(0x4c6c6c6);
	expivot1.SelBackColor(0x4000000);
	expivot1.SelForeColor(WinApi::RGB2int(0,0,1));
	expivot1.CheckImage(0/*Unchecked*/,16777216);
	expivot1.CheckImage(1/*Checked*/,33554432);
	expivot1.CheckImage(2/*PartialChecked*/,50331648);
	expivot1.Background(20/*exSelBackColorFilter*/,expivot1.SelBackColor());
	expivot1.Background(21/*exSelForeColorFilter*/,expivot1.SelForeColor());
	expivot1.Background(26/*exBackColorFilter*/,expivot1.BackColor());
	expivot1.Background(27/*exForeColorFilter*/,expivot1.ForeColor());
	expivot1.Background(32/*exCursorHoverColumn*/,-1);
	expivot1.Background(0/*exHeaderFilterBarButton*/,0x4000000);
	expivot1.Background(41/*exHeaderFilterBarActive*/,0x4010101);
	expivot1.Background(1/*exFooterFilterBarButton*/,0x40000ff);
	expivot1.HeaderAppearance(4/*Etched*/);
	expivot1.GridLineStyle(512/*exGridLinesGeometric*/);
	var_s5 = "gBJJgBAIDAAGAAEAAQhYAf8Pf4hh0QihCJo2AEZjQAjEZFEaIEaEEaAIAkcbk0olUrlktl0vmExmUzmk1m03nE5nU7nk9n0/oFBoVDolFo1HpFJpVLplNp1PqFRqVTql";
	var_s5 = var_s5 + "Vq1XrFZrVbrldr1fsFhsVjslls1ntFptVrtltt1vuFxuVzul1u13vF5vV7vl9v1/wGBwWDwmFw2HxGJxWLxmNx0xiFdyOTh8Tf9ZymXx+QytcyNgz8r0OblWjyWds+m0";
	var_s5 = var_s5 + "ka1Vf1ta1+r1mos2xrG2xeZ0+a0W0qOx3GO4NV3WeyvD2XJ5XL5nN51aiw+lfSj0gkUkAEllHanHI5j/cHg8EZf7w8vl8j4f/qfEZeB09/vjLAB30+kZQAP/P5/H6/yN";
	var_s5 = var_s5 + "AOAEAwCjMBwFAEDwJBMDwLBYAP2/8Hv8/gAGAD8LQs9w/nhDY/oygIA=";
	expivot1.Images(COMVariant::createFromStr(var_s5));
	expivot1.Import("C:\\Program Files\\Exontrol\\ExPivot\\Sample\\data.txt");
	expivot1.PivotRows("12,0");
	expivot1.PivotColumns("sum(5)");
	expivot1.PivotTotals("/sum");
	var_Column = COM::createFromObject(expivot1.DataColumns()).item(COMVariant::createFromInt(0)); com_Column = var_Column;
	com_Column.FormatImage("value case (default: -1;'Germany': 1;'USA': 2;'Mexico': 3)");
	expivot1.EndUpdate();
}
145
ImageSize property on 16 (default) (specifies the size of control' icons/images/check-boxes/radio-buttons)

public void init()
{
	COM com_Appearance,com_Column;
	anytype var_Appearance,var_Column;
	str var_s,var_s1;
	;

	super();

	expivot1.BeginUpdate();
	expivot1.ImageSize(16);
	var_s = "gBJJgBAIDAAEg4ACEKAD/hz/EMNh8TIRNGwAjEZAEXjAojJAjMLjABAAgjUYkUnlUrlktl0vmExmUzmk1m03nE5nU7nkrQCAntBoVDolFo1HoM/ADAplLptImdMYFOqd";
	var_s = var_s + "SqlXq1QrVbrlGpVWsFNrNdnNjsk7pQAtNroFnt0sh8Yr9iulTuNxs1Eu8OiT/vsnsNVutXlk/oGGtVKxGLxWNtsZtN8iUYuNvy0Zvd+xNYwdwvl4p870GCqc8vOeuVtt";
	var_s = var_s + "mp1knyOayWVy+WzN/ze1wOElenm+12WUz/Bv2/3UyyWrzeutux2GSyGP2dQ33C1ur3GD3M4zUNzHdlWjq/E3nGzVpjWv4HA7fRy/Tv2IrN8rPW6nZ3ve7mUlfu20Z8ac";
	var_s = var_s + "vQyb+vY9jasYoDwMm+LytVBDqKG3z8O3Cb8P+mkAuY9cCQ2uL4KaxDKvkp8RNLEjqugnrwQo/UWPzFyeQw5sNLZFENrI4kOqU66pw8uzmOKvTqNqjULJvGL1JO48GtTG";
	var_s = var_s + "sbLdEL3scxLlyiw8dQeoUVxdLTtyKmUjwGlslRPJsnK1HbAKbKCrsQo8uQk/CeP44iaR/ATnTNPLvyxPU+z9P9AUDQVBowiofJXQ6Oo+kKMpIkjztE4TKn4P6JowfgPn";
	var_s = var_s + "wD5/nAjB8AOeAPo0eAA1IAFH07UhAIMpYAVIYFHqBUhwVjV1S1EtQAHxW65V0AZwAeuQAnwB5gAPYViEDVhwAHTQBkCjB4gOhwDmCyhH0sACAg==";
	expivot1.Images(COMVariant::createFromStr(var_s));
	var_Appearance = expivot1.VisualAppearance(); com_Appearance = var_Appearance;
		var_s1 = "gBFLBCJwBAEHhEJAAEhABUYCg6AADACAxRDgMQBQKAAzQFAYbhkGCGAAGMZxRgmFgAQhFcZQSKUOQTDKMIziYBYfgkMIgSbJUgDGAkRRdDSOYDmGQYDiCIoRShOMIjHL";
		var_s1 = var_s1 + "UXxtDaIZwhEAoJb+RgAUY/cTzaAEUwHHiTKInaCQShsFYJUJAdRURQ9EwvCIZBpEWwLChENQwWLCNj2TScBwjCyqbale45ViqdoDU5EUiXJJ8ZxnECfYyrGjaMpCeKBU";
		var_s1 = var_s1 + "rGYTVRBIMxLLSia5oeJqMrnBpNVrIUgXCAGFwHK6BcauXIIDp6XoWWRbAAWDpVVzNNC3YzkCIceADHKiXxmVz4JLdGZ1QTGID2XaYaxWK4oZjsVSc4KDHbETbHFi9Fo3";
		var_s1 = var_s1 + "NaaxGisew+GYc4HlCR5NAAAIIEkQJSGMOgdE4RhYDwJJsAaAYQgmPpolCWgSCiBJzjcEIAkQXIBm8d5UhOQgCDUIBDDJDhgggJgKgKYJIDSVoDk8KBFF4OohEMZgWDsY";
		var_s1 = var_s1 + "YDj4GoGmGSB2B6B5iAiBgYDsYRjGSbIJo4RgqDuIpIAoLoLmMCJGDKDJjJiLA7xqUAAgGTwYnYPoPmQCQGEKEJkEkFg9gGY44BoRoSmSSQ2EKEggHgRhShSZRJFYVoVm";
		var_s1 = var_s1 + "WCRmFKFAgGOTheheZgJgYYoYmYSYWGaF4lkMMJ0hqZpJjYbobmcCZGHKHJmjmJh0h2Z4JmYcIaE8WZ2H6H5oAoBoCiCaBKBYfdjGoJoKiKaJKDaDojmkChGgmIgpCoVo";
		var_s1 = var_s1 + "WiWaJZiSd4mmmSh2h6J5qAqBoiiiaY5iSeIpmqComiqKpqkqNouiuah6hqMIsmsSpWiuGhP1kOoumuSp2j6L5sAsBo54gKwWkaMZsgsJpKjKbJLDaRYxYWRpSjSbIZiS";
		var_s1 = var_s1 + "e41m2CxmlqNptksdpejebR5iSfI4m4S4W16boLiaao6m5fJ9jubwLkaco8m8S5WnaPZunuOp4j6b5Lnac4SA0PAGlgP4wEwFwGkGcIMCcCpCnCCxiA8NYAAmMJfkSbhF";
		var_s1 = var_s1 + "CcFpFnGDBnBqRpUhuEwTDeZ5lHCfw6HIQxLCaAxygyJwqgGcATE4FA6hWY4tjEAAQBAgIA==";
		com_Appearance.Add(4,COMVariant::createFromStr(var_s1));
	expivot1.BackColorHeader(0x4c6c6c6);
	expivot1.SelBackColor(0x4000000);
	expivot1.SelForeColor(WinApi::RGB2int(0,0,1));
	expivot1.Background(20/*exSelBackColorFilter*/,expivot1.SelBackColor());
	expivot1.Background(21/*exSelForeColorFilter*/,expivot1.SelForeColor());
	expivot1.Background(26/*exBackColorFilter*/,expivot1.BackColor());
	expivot1.Background(27/*exForeColorFilter*/,expivot1.ForeColor());
	expivot1.Background(32/*exCursorHoverColumn*/,-1);
	expivot1.Background(0/*exHeaderFilterBarButton*/,0x4000000);
	expivot1.Background(41/*exHeaderFilterBarActive*/,0x4010101);
	expivot1.Background(1/*exFooterFilterBarButton*/,0x40000ff);
	expivot1.HeaderAppearance(4/*Etched*/);
	expivot1.GridLineStyle(512/*exGridLinesGeometric*/);
	expivot1.Import("C:\\Program Files\\Exontrol\\ExPivot\\Sample\\data.txt");
	expivot1.PivotRows("12,0");
	expivot1.PivotColumns("sum(5)");
	expivot1.PivotTotals("/sum");
	var_Column = COM::createFromObject(expivot1.DataColumns()).item(COMVariant::createFromInt(0)); com_Column = var_Column;
	com_Column.FormatImage("value case (default: -1;'Germany': 1;'USA': 2;'Mexico': 3)");
	expivot1.EndUpdate();
}
144
Is it possible to view all events the control fires
// Event event - Notifies the application once the control fires an event.
void onEvent_Event(int   _EventID)
{
	;
	print( expivot1.EventParam(-2) );
}

public void init()
{
	;

	super();

	expivot1.BeginUpdate();
	expivot1.Import("C:\\Program Files\\Exontrol\\ExPivot\\Sample\\data.txt");
	expivot1.PivotBarVisible(16780763/*exPivotBarAllowFormatConditionalAppearance | exPivotBarAllowResizeColumns | exPivotBarAllowUndoRedo | exPivotBarAllowFormatContent | exPivotBarAllowFormatAppearance | exPivotBarAllowValues | exPivotBarShowTotals | exPivotBarAutoFit | exPivotBarSizable | exPivotBarVisible*/);
	expivot1.EndUpdate();
}
143
Does your control support images

public void init()
{
	COM com_Column;
	anytype var_Column;
	str var_s;
	;

	super();

	expivot1.BeginUpdate();
	var_s = "gBJJgBAIDAAGAAEAAQhYAf8Pf4hh0QihCJo2AEZjQAjEZFEaIEaEEaAIAkcbk0olUrlktl0vmExmUzmk1m03nE5nU7nk9n0/oFBoVDolFo1HpFJpVLplNp1PqFRqVTql";
	var_s = var_s + "Vq1XrFZrVbrldr1fsFhsVjslls1ntFptVrtltt1vuFxuVzul1u13vF5vV7vl9v1/wGBwWDwmFw2HxGJxWLxmNx0xiFdyOTh8Tf9ZymXx+QytcyNgz8r0OblWjyWds+m0";
	var_s = var_s + "ka1Vf1ta1+r1mos2xrG2xeZ0+a0W0qOx3GO4NV3WeyvD2XJ5XL5nN51aiw+lfSj0gkUkAEllHanHI5j/cHg8EZf7w8vl8j4f/qfEZeB09/vjLAB30+kZQAP/P5/H6/yN";
	var_s = var_s + "AOAEAwCjMBwFAEDwJBMDwLBYAP2/8Hv8/gAGAD8LQs9w/nhDY/oygIA=";
	expivot1.Images(COMVariant::createFromStr(var_s));
	expivot1.Import("C:\\Program Files\\Exontrol\\ExPivot\\Sample\\data.txt");
	var_Column = COM::createFromObject(expivot1.DataColumns()).item(COMVariant::createFromInt(0)); com_Column = var_Column;
	com_Column.FormatImage("value case (default: -1;'Germany': 1;'USA': 2;'Mexico': 3)");
	expivot1.EndUpdate();
}
142
Is it possible to rename the generated-columns

public void init()
{
	str var_s;
	;

	super();

	expivot1.BeginUpdate();
	expivot1.HeaderAppearance(4/*Etched*/);
	expivot1.HeaderHeight(24);
	expivot1.Import("Item;1;2;3#A;10;20;30#A;20;40;50#A;20;30;20#B;10;10;10#B;20;50;30","str=`'` eor='#' eof=';' hdr=1");
	expivot1.PivotRows(0);
	expivot1.PivotColumns("sum(1),sum(2),sum(3)");
	var_s = "(iaggregate ? (proper(aggregate) + ` <off -4>` + (caption case (default:`None`; 1:`Sunday`; 2:`Monday`; 3:`Tuesday`; 4:`Wednesda";
	var_s = var_s + "y`; 5:`Thursday`; 6:`Friday`; 7:`Saturday`))  + `</b>`) : caption)";
	expivot1.FormatPivotHeader(var_s);
	expivot1.EndUpdate();
}
141
Is it possible to rename the columns

public void init()
{
	COM com_Column;
	anytype var_Column;
	;

	super();

	expivot1.BeginUpdate();
	expivot1.AppendData("C:\\Program Files\\Exontrol\\ExPivot\\Sample\\data.txt");
	var_Column = COM::createFromObject(expivot1.DataColumns()).item(COMVariant::createFromInt(0)); com_Column = var_Column;
	com_Column.Caption("<b>Nation");
	expivot1.Refresh();
	expivot1.EndUpdate();
}
140
The pivot's rows and columns arer lost once I call the AppendData. Can I add/append data in the background so the layout of the pivot is not lost

public void init()
{
	str s;
	;

	super();

	expivot1.BeginUpdate();
	expivot1.AppendData("Def");
	expivot1.AppendData("A");
	expivot1.AppendData("A");
	expivot1.AppendData("A");
	expivot1.PivotRows(0);
	expivot1.PivotColumns("count(0)");
	s = expivot1.Layout();
	expivot1.AppendData("B");
	expivot1.AppendData("B");
	expivot1.Layout(s);
	expivot1.EndUpdate();
}
139
Is it possible to add data without clearing the previously data

public void init()
{
	;

	super();

	expivot1.BeginUpdate();
	expivot1.AppendData("Column");
	expivot1.AppendData("1");
	expivot1.AppendData("2");
	expivot1.AppendData("3");
	expivot1.EndUpdate();
}
138
How can I change the visual appearance of the Total button

public void init()
{
	COM com_Appearance;
	anytype var_Appearance;
	str var_s;
	;

	super();

	expivot1.BeginUpdate();
	var_Appearance = expivot1.VisualAppearance(); com_Appearance = var_Appearance;
		var_s = "gBFLBCJwBAEHhEJAAEhABAoCg6AADACAxRDgMQBQKAAzQFAcDBvBgABoGEZIJhUAIIRZGMIjFDcEwxC6NIpjeIBSDUJYkSZEAyjBI8ExXFqMQCkGKocgONYgQLHcgxeA";
		var_s = var_s + "0XRYFoYRinWA5PoAMoyTYMdIAnTOM4eU6AATwTSccw0fisAAfeq4Wh+HwIQiUBomGahajkMqDYRVagyCI2a4ZDZCIoVJalLAxCw8KDqGJnMr1R5/MDgOBYogXBqHYhiO";
		var_s = var_s + "AsdhjSYdBK/WLeHI6Y1GS7MMxzLK8cxVaqfMpoMI4FjuS5NU7TMC0PAXdy3LqvbBsOxbHqma5nVSBcC2ba9cz3PK4ABuW7bM6TRKNYbkOA4LiNQaxVSrNKmIwPI5DJ5M";
		var_s = var_s + "l2co1h0d5vBWDJQEkCI7mIJpykyTZblqdhYDyR5TlmX5RBgeI+D4BxLDkO5nlieh5g2FQ5DOZAiDkDASAmYh7l0RxZncPxfhadZkBmH5jvKLhamMcItBYXgoC4B4CBgF";
		var_s = var_s + "oskEP4hkgdgegcD4zlycA1goAJ5mIc4KjgfJ+D0ToTFGbx4h8Qh2CqDJjEeJg0gyT4DkCYg5kyAhCDeBxjkIQgDHSIgTkIP4NGGFplgGEZkkifhFgSIRHgCXwtAYeQ2B";
		var_s = var_s + "+DYlGkZgqgsIpnEoJxzmWGRiFqGJhmkBhDAwJBZDIYoZCYSQ+BOFAmBkJZBhKZpJlYHIXCYR4lFuHpnkmdh+h+aAKAaAogF6FhWgOIZogoJh/GuHoTl6DojmkChGhKJJ";
		var_s = var_s + "pEoVoWiUHAGDCTg6CmSheh6J5qAoTJriiWQUCSb4ploEwpgq4BKjWBomhmc4pAkOpRAQJQBICA==";
		com_Appearance.Add(2,COMVariant::createFromStr(var_s));
		com_Appearance.Add(1,"CP:2 -10 -6 8 8");
	expivot1.Background(185/*exPivotBarTotal*/,0x1000000);
	expivot1.Import("C:\\Program Files\\Exontrol\\ExPivot\\Sample\\data.txt");
	expivot1.EndUpdate();
}
137
Is it possible to highlight the column's header once a filter is applied

public void init()
{
	COM com_Appearance;
	anytype var_Appearance;
	str var_s,var_s1;
	;

	super();

	expivot1.BeginUpdate();
	var_Appearance = expivot1.VisualAppearance(); com_Appearance = var_Appearance;
		var_s = "gBFLBCJwBAEHhEJAAEhABX8GACAADACAxSDEMQBQKAAzQFAYbhgHCGAAGQaBUgmFgAQhFcZQSKUOQTDKNYykCIRSDUJYkSZEIyjBI8ExXFqNACkGKwYgmNYiTLAcgANJ";
		var_s = var_s + "0WBaGIZJ4gOT5fDKMoEDRRYADFCscwxJybQAqGQKKb+VgAVY/cTyBIAEQSKA0TDOQ5TSKWB4JPZQRBEbZMNBtBIUJquKaqShdQJCU5FdY3Xblez9P7AMBwLFEC4NQ8YN";
		var_s = var_s + "YuPhjR4dRTIMhvVAsUArFh8Zg9GZZFjmDIDT4ydBLTQwcyVIKnP5qOa6XbmPoCQDYKxZHYxPzVDa3axuL76dqCAT7XrXNy1TbNRrzQKfcJqfCbdw2YaDZLOOT3fjuI4h";
		var_s = var_s + "hKaRzFAHJ+jYQ4xHuY4gHuGIXGeExqC8Tp6C+PoEm+G5ImycRgh0XwvDGa5rgOeoejyXwnFeQp2mkf5ClgBB9gCWIYAwfYAEKV58mkdwOggNArgOXY2EWLoDkKOA0mgb";
		var_s = var_s + "hOGgZApgaSBIHWSYHSmbApgYThmESZYJkIeIkgeCpfliLIHgpMIcmUYYYmODAlg2SI4mWfRfGOEguDcCRjFYAJihCQhJBSDoRmONgKEcI4kFCEJhhOVYTmYnAlEAQhWB";
		var_s = var_s + "MJYJGYWoWmWSR2F6F5lnkWAQhUAgpEieRWEuSYkjWGpmkmNhuhuZwJkYcocmaaYkjyEhngnUA6lEFAlAEgI=";
		com_Appearance.Add(2,COMVariant::createFromStr(var_s));
		com_Appearance.Add(1,"CP:2 -8 -4 2 4");
	expivot1.HeaderHeight(28);
	expivot1.Background(0/*exHeaderFilterBarButton*/,0x1fefefe);
	expivot1.Background(41/*exHeaderFilterBarActive*/,0x1010101);
	expivot1.Background(32/*exCursorHoverColumn*/,-1);
	expivot1.Import("C:\\Program Files\\Exontrol\\ExPivot\\Sample\\data.txt");
	expivot1.FilterBarFont(expivot1.Font());
	expivot1.Description(11/*exFilterBarAnd*/,expivot1.FormatABC("`<fgcolor=808080> ` + value + ` </fgcolor>`",COMVariant::createFromStr(expivot1.Description(11/*exFilterBarAnd*/))));
	var_s1 = "(( ( value replace `[<b>` with `<bgcolor=000000><fgcolor=FFFFFF><b> ` replace `</b>]` with ` </b></bgcolor></fgcolor>` replace `";
	var_s1 = var_s1 + "[<s>` with `<bgcolor=C0C0C0><fgcolor=FFFFFF> ` replace `</s>]` with ` </fgcolor></bgcolor>` )  + `<r><fgcolor=808080>` + ( match";
	var_s1 = var_s1 + "itemcount < 0 ? ( ( len(value) ? `` : `` ) + `<r>` + abs(matchitemcount + 1) + ` result(s)` ) : (`<r><fgcolor=808080>`+ itemcoun";
	var_s1 = var_s1 + "t + ` item(s)`) )))";
	expivot1.FilterBarCaption(var_s1);
	expivot1.FilterBarPromptVisible(2583/*exFilterBarCompact | exFilterBarShowCloseIfRequired | exFilterBarSingleLine | exFilterBarCaptionVisible | exFilterBarVisible | exFilterBarPromptVisible*/);
	expivot1.EndUpdate();
}
136
How can I change the format the column displays (for instance, displaying no 0:00:00)

public void init()
{
	;

	super();

	expivot1.BeginUpdate();
	expivot1.Import("C:\\Program Files\\Exontrol\\ExPivot\\Sample\\data.txt");
	expivot1.FormatContents().Add("notime","value replace `0:00:00` with ``");
	expivot1.PivotRows("9[content=notime]");
	expivot1.EndUpdate();
}
135
Is it possible to show the filterbar on top of the rows

public void init()
{
	;

	super();

	expivot1.BeginUpdate();
	expivot1.Import("C:\\Program Files\\Exontrol\\ExPivot\\Sample\\data.txt");
	expivot1.FilterBarPromptVisible(8705/*exFilterBarTop | exFilterBarShowCloseIfRequired | exFilterBarPromptVisible*/);
	expivot1.EndUpdate();
}
134
How can I uses the control in window-less mode (with no user interface, option 3)

public void init()
{
	COM com_Pivot;
	anytype var_Pivot;
	;

	super();

	// Add 'expivot.dll(ExPivot.dll)' reference to your project.
	var_Pivot = COM::createFromObject(new EXPIVOTLib.expivot()); com_Pivot = var_Pivot;
		com_Pivot.Import("C:\\Program Files\\Exontrol\\ExPivot\\Sample\\data.txt");
		com_Pivot.PivotRows("0");
		com_Pivot.PivotColumns("avg(5)");
		print( com_Pivot.Export() );
}
133
How can I uses the control in window-less mode (with no user interface, option 2)

public void init()
{
	COM com_Pivot,com_rs;
	anytype rs,var_Pivot;
	;

	super();

	// Add 'expivot.dll(ExPivot.dll)' reference to your project.
	var_Pivot = COM::createFromObject(new EXPIVOTLib.expivot()); com_Pivot = var_Pivot;
		// Add 'Microsoft ActiveX Data Objects 6.1 Library(msado15.dll)' reference to your project.
		rs = COM::createFromObject(new ADODB.Recordset()); com_rs = rs;
			rs.Open("Data","Provider=Microsoft.ACE.OLEDB.12.0;Data Source=C:\\Program Files\\Exontrol\\ExPivot\\Sample\\Access\\sample.accdb",3/*adOpenStatic*/,3/*adLockOptimistic*/);
		com_Pivot.DataSource(rs);
		com_Pivot.PivotRows("0");
		com_Pivot.PivotColumns("max(5)");
		print( com_Pivot.Export() );
}
132
How can I uses the control in window-less mode (with no user interface, option 1)

public void init()
{
	COM com_Pivot;
	anytype var_Pivot;
	;

	super();

	// Add 'expivot.dll(ExPivot.dll)' reference to your project.
	var_Pivot = COM::createFromObject(new EXPIVOTLib.expivot()); com_Pivot = var_Pivot;
		com_Pivot.LoadXML("http://www.exontrol.net/testing.xml");
		com_Pivot.PivotRows("1");
		com_Pivot.PivotColumns("max(6)");
		print( com_Pivot.Export() );
}
131
How can I connect to a DBF file

public void init()
{
	COM com_rs;
	anytype rs;
	;

	super();

	expivot1.BeginUpdate();
	// Add 'Microsoft ActiveX Data Objects 6.1 Library(msado15.dll)' reference to your project.
	rs = COM::createFromObject(new ADODB.Recordset()); com_rs = rs;
		rs.Open("Select * From foxcode.DBF","Provider=vfpoledb;Data Source=C:\\Program Files\\Microsoft Visual FoxPro 9\\",3/*adOpenStatic*/,3/*adLockOptimistic*/);
	expivot1.DataSource(rs);
	expivot1.PivotRows("0");
	expivot1.PivotColumns("count(0)[content=numeric],avg(7)[negative,content=numeric]");
	expivot1.EndUpdate();
}
130
Export Data in HTML format

public void init()
{
	COM com_FormatAppearance,com_FormatAppearances,com_FormatConditionalAppearance,com_FormatConditionalAppearances;
	anytype var_FormatAppearance,var_FormatAppearances,var_FormatConditionalAppearance,var_FormatConditionalAppearances;
	str var_s;
	;

	super();

	expivot1.BeginUpdate();
	expivot1.Import("C:\\Program Files\\Exontrol\\ExPivot\\Sample\\data.txt");
	expivot1.Description(11/*exFilterBarAnd*/,expivot1.FormatABC("`<fgcolor=808080> ` + value + ` </fgcolor>`",COMVariant::createFromStr(expivot1.Description(11/*exFilterBarAnd*/))));
	var_s = "(( ( value replace `[<b>` with `<bgcolor=000000><fgcolor=FFFFFF><b> ` replace `</b>]` with ` </b></bgcolor></fgcolor>` replace `";
	var_s = var_s + "[<s>` with `<bgcolor=C0C0C0><fgcolor=FFFFFF> ` replace `</s>]` with ` </fgcolor></bgcolor>` )  + `<r><fgcolor=808080>` + ( match";
	var_s = var_s + "itemcount < 0 ? ( ( len(value) ? `` : `` ) + `<r>` + abs(matchitemcount + 1) + ` result(s)` ) : (`<r><fgcolor=808080>`+ itemcoun";
	var_s = var_s + "t + ` item(s)`) )))";
	expivot1.FilterBarCaption(var_s);
	expivot1.FilterBarPromptVisible(2583/*exFilterBarCompact | exFilterBarShowCloseIfRequired | exFilterBarSingleLine | exFilterBarCaptionVisible | exFilterBarVisible | exFilterBarPromptVisible*/);
	var_FormatConditionalAppearances = expivot1.FormatConditionalAppearances(); com_FormatConditionalAppearances = var_FormatConditionalAppearances;
		var_FormatConditionalAppearance = COM::createFromObject(com_FormatConditionalAppearances.Add("G1000","> 1000","value > 1000")); com_FormatConditionalAppearance = var_FormatConditionalAppearance;
		com_FormatConditionalAppearance.ForeColor(WinApi::RGB2int(0,0,255));
		var_FormatConditionalAppearance = COM::createFromObject(com_FormatConditionalAppearances.Add("L1000","< 1000","value < 1000")); com_FormatConditionalAppearance = var_FormatConditionalAppearance;
		com_FormatConditionalAppearance.ForeColor(WinApi::RGB2int(255,0,0));
		var_FormatConditionalAppearance = COM::createFromObject(com_FormatConditionalAppearances.Add("Zero","zero","value = 0")); com_FormatConditionalAppearance = var_FormatConditionalAppearance;
		com_FormatConditionalAppearance.BackColor(WinApi::RGB2int(224,224,224));
	var_FormatAppearances = expivot1.FormatAppearances(); com_FormatAppearances = var_FormatAppearances;
		var_FormatAppearance = COM::createFromObject(com_FormatAppearances.Add("grayed")); com_FormatAppearance = var_FormatAppearance;
		com_FormatAppearance.ForeColor(WinApi::RGB2int(128,128,128));
		var_FormatAppearance = COM::createFromObject(com_FormatAppearances.Add("red")); com_FormatAppearance = var_FormatAppearance;
		com_FormatAppearance.ForeColor(WinApi::RGB2int(255,0,0));
		var_FormatAppearance = COM::createFromObject(com_FormatAppearances.Add("green")); com_FormatAppearance = var_FormatAppearance;
		com_FormatAppearance.ForeColor(WinApi::RGB2int(0,255,0));
		var_FormatAppearance = COM::createFromObject(com_FormatAppearances.Add("blue")); com_FormatAppearance = var_FormatAppearance;
		com_FormatAppearance.ForeColor(WinApi::RGB2int(0,0,255));
		var_FormatAppearance = COM::createFromObject(com_FormatAppearances.Add("bgrayed")); com_FormatAppearance = var_FormatAppearance;
		com_FormatAppearance.BackColor(WinApi::RGB2int(128,128,128));
		var_FormatAppearance = COM::createFromObject(com_FormatAppearances.Add("bred")); com_FormatAppearance = var_FormatAppearance;
		com_FormatAppearance.BackColor(WinApi::RGB2int(255,0,0));
		var_FormatAppearance = COM::createFromObject(com_FormatAppearances.Add("bgreen")); com_FormatAppearance = var_FormatAppearance;
		com_FormatAppearance.BackColor(WinApi::RGB2int(0,255,0));
		var_FormatAppearance = COM::createFromObject(com_FormatAppearances.Add("bblue")); com_FormatAppearance = var_FormatAppearance;
		com_FormatAppearance.BackColor(WinApi::RGB2int(0,0,255));
	expivot1.PivotRows("0[bold],2[grayed]");
	expivot1.PivotColumns("sum(5)[L1000],sum(5)[G1000]/12:A");
	expivot1.PivotTotals("sum[bold,content=currency,bgrayed]");
	expivot1.AutoDrag(16/*exAutoDragScroll*/);
	expivot1.BackColorAlternate(WinApi::RGB2int(240,240,240));
	expivot1.FilterBarPromptType(2/*exFilterPromptContainsAny*/);
	expivot1.FilterBarPromptPattern("France Germany");
	expivot1.EndUpdate();
	print( expivot1.Export("htm") );
}
129
Export Data in HTML format (IE)

public void init()
{
	COM com_FormatAppearance,com_FormatAppearances,com_FormatConditionalAppearance,com_FormatConditionalAppearances,com_ShellBrowserWindow;
	anytype var_FormatAppearance,var_FormatAppearances,var_FormatConditionalAppearance,var_FormatConditionalAppearances,var_ShellBrowserWindow;
	str sFile,var_s;
	;

	super();

	expivot1.BeginUpdate();
	expivot1.Import("C:\\Program Files\\Exontrol\\ExPivot\\Sample\\data.txt");
	expivot1.Description(11/*exFilterBarAnd*/,expivot1.FormatABC("`<fgcolor=808080> ` + value + ` </fgcolor>`",COMVariant::createFromStr(expivot1.Description(11/*exFilterBarAnd*/))));
	var_s = "(( ( value replace `[<b>` with `<bgcolor=000000><fgcolor=FFFFFF><b> ` replace `</b>]` with ` </b></bgcolor></fgcolor>` replace `";
	var_s = var_s + "[<s>` with `<bgcolor=C0C0C0><fgcolor=FFFFFF> ` replace `</s>]` with ` </fgcolor></bgcolor>` )  + `<r><fgcolor=808080>` + ( match";
	var_s = var_s + "itemcount < 0 ? ( ( len(value) ? `` : `` ) + `<r>` + abs(matchitemcount + 1) + ` result(s)` ) : (`<r><fgcolor=808080>`+ itemcoun";
	var_s = var_s + "t + ` item(s)`) )))";
	expivot1.FilterBarCaption(var_s);
	expivot1.FilterBarPromptVisible(2583/*exFilterBarCompact | exFilterBarShowCloseIfRequired | exFilterBarSingleLine | exFilterBarCaptionVisible | exFilterBarVisible | exFilterBarPromptVisible*/);
	var_FormatConditionalAppearances = expivot1.FormatConditionalAppearances(); com_FormatConditionalAppearances = var_FormatConditionalAppearances;
		var_FormatConditionalAppearance = COM::createFromObject(com_FormatConditionalAppearances.Add("G1000","> 1000","value > 1000")); com_FormatConditionalAppearance = var_FormatConditionalAppearance;
		com_FormatConditionalAppearance.ForeColor(WinApi::RGB2int(0,0,255));
		var_FormatConditionalAppearance = COM::createFromObject(com_FormatConditionalAppearances.Add("L1000","< 1000","value < 1000")); com_FormatConditionalAppearance = var_FormatConditionalAppearance;
		com_FormatConditionalAppearance.ForeColor(WinApi::RGB2int(255,0,0));
		var_FormatConditionalAppearance = COM::createFromObject(com_FormatConditionalAppearances.Add("Zero","zero","value = 0")); com_FormatConditionalAppearance = var_FormatConditionalAppearance;
		com_FormatConditionalAppearance.BackColor(WinApi::RGB2int(224,224,224));
	var_FormatAppearances = expivot1.FormatAppearances(); com_FormatAppearances = var_FormatAppearances;
		var_FormatAppearance = COM::createFromObject(com_FormatAppearances.Add("grayed")); com_FormatAppearance = var_FormatAppearance;
		com_FormatAppearance.ForeColor(WinApi::RGB2int(128,128,128));
		var_FormatAppearance = COM::createFromObject(com_FormatAppearances.Add("red")); com_FormatAppearance = var_FormatAppearance;
		com_FormatAppearance.ForeColor(WinApi::RGB2int(255,0,0));
		var_FormatAppearance = COM::createFromObject(com_FormatAppearances.Add("green")); com_FormatAppearance = var_FormatAppearance;
		com_FormatAppearance.ForeColor(WinApi::RGB2int(0,255,0));
		var_FormatAppearance = COM::createFromObject(com_FormatAppearances.Add("blue")); com_FormatAppearance = var_FormatAppearance;
		com_FormatAppearance.ForeColor(WinApi::RGB2int(0,0,255));
		var_FormatAppearance = COM::createFromObject(com_FormatAppearances.Add("bgrayed")); com_FormatAppearance = var_FormatAppearance;
		com_FormatAppearance.BackColor(WinApi::RGB2int(128,128,128));
		var_FormatAppearance = COM::createFromObject(com_FormatAppearances.Add("bred")); com_FormatAppearance = var_FormatAppearance;
		com_FormatAppearance.BackColor(WinApi::RGB2int(255,0,0));
		var_FormatAppearance = COM::createFromObject(com_FormatAppearances.Add("bgreen")); com_FormatAppearance = var_FormatAppearance;
		com_FormatAppearance.BackColor(WinApi::RGB2int(0,255,0));
		var_FormatAppearance = COM::createFromObject(com_FormatAppearances.Add("bblue")); com_FormatAppearance = var_FormatAppearance;
		com_FormatAppearance.BackColor(WinApi::RGB2int(0,0,255));
	expivot1.ShowBranchRows(33/*exBranchIncludeAggregate | exBranchTree*/);
	expivot1.PivotRows("0[bold],2[grayed]");
	expivot1.PivotColumns("sum(5)[L1000],sum(5)[G1000]/12:A");
	expivot1.PivotTotals("/sum[bold,content=currency,bgrayed]");
	expivot1.AutoDrag(16/*exAutoDragScroll*/);
	expivot1.BackColorAlternate(WinApi::RGB2int(240,240,240));
	expivot1.FilterBarPromptType(2/*exFilterPromptContainsAny*/);
	expivot1.FilterBarPromptPattern("France Germany");
	expivot1.EndUpdate();
	sFile = "c:/temp/export.htm";
	expivot1.Export(sFile,"vis");
	// Add 'Microsoft Internet Controls(ieframe.dll)' reference to your project.
	var_ShellBrowserWindow = COM::createFromObject(new SHDocVw.ShellBrowserWindow()); com_ShellBrowserWindow = var_ShellBrowserWindow;
		com_ShellBrowserWindow.Navigate2(sFile);
}
128
Export Data in CSV format

public void init()
{
	;

	super();

	expivot1.BeginUpdate();
	expivot1.Import("C:\\Program Files\\Exontrol\\ExPivot\\Sample\\data.txt");
	expivot1.PivotRows("0");
	expivot1.PivotColumns("sum(5),sum(5)/12:A");
	expivot1.PivotTotals("sum[bold,content=currency]");
	expivot1.AutoDrag(16/*exAutoDragScroll*/);
	expivot1.BackColorAlternate(WinApi::RGB2int(240,240,240));
	expivot1.EndUpdate();
	print( expivot1.Export() );
}
127
Is it possible to change the visual appearance of the update / reload button being displayed in the control's pivot bar

public void init()
{
	COM com_Appearance;
	anytype var_Appearance;
	str var_s;
	;

	super();

	expivot1.BeginUpdate();
	var_Appearance = expivot1.VisualAppearance(); com_Appearance = var_Appearance;
		var_s = "gBFLBCJwBAEHhEJAAEhABMsGACAADACAxRDgMQBQKAAzAJBIYhiG4cYCgMYxXDOCYXABCEYRXBIZQ7BKNIxjSJwCgkBYJDSMAiiaLETwHFKVRwkWBBWjMAAxDZFcggA7";
		var_s = var_s + "7fwxHaOAghGgobjaPY+UbGERAAKQahLJamablCSqLjCS4kSLHEbQHTcRSzLKQZBBCCSQKkYx0HScRiwPBIbQkIQmbajOaYDCiQ53QLCAYRXS9PwvI7AMBwLA8EwXBo9D";
		var_s = var_s + "ZiIy4WyuGj3R4WchAbIwIxUK6XHhmLjZXg+Bz9T6LQZ0JStEx2SYjAJqOiKU62W9xbAUOxQTpIBJXW7Oc7GTa8dQfPoJaIDLicHgoZ6NLIcOR0abSO42CRrdByfRYMwv";
		var_s = var_s + "isCQKnYOh9i4LwbBINpBHeBxeC6X4TAIEpzkIWgei8L4Qk2boEhWPg9C4SJijIOZ7mEXA/iAX5yBKDx/lmVhEC0Z5ZlKHgGAAYIHkGcQxiCQ5eA4PghAKNgSG0VYXEiJ";
		var_s = var_s + "YFl+QAtiCBpdjcDJkB0IgAiYIgBmIQAWCYCoigYZB4DQYpAjoLh3h6SJFgcOpXlAAQBICA==";
		com_Appearance.Add(1,COMVariant::createFromStr(var_s));
	expivot1.Background(184/*exPivotBarReload*/,0x1000000);
	expivot1.Import("C:\\Program Files\\Exontrol\\ExPivot\\Sample\\data.txt");
	expivot1.PivotBarVisible(16780763/*exPivotBarAllowFormatConditionalAppearance | exPivotBarAllowResizeColumns | exPivotBarAllowUndoRedo | exPivotBarAllowFormatContent | exPivotBarAllowFormatAppearance | exPivotBarAllowValues | exPivotBarShowTotals | exPivotBarAutoFit | exPivotBarSizable | exPivotBarVisible*/);
	expivot1.EndUpdate();
}
126
Is it possible to change the visual appearance of the plus/add new button being displayed in the control's pivot bar

public void init()
{
	COM com_Appearance;
	anytype var_Appearance;
	str var_s;
	;

	super();

	expivot1.BeginUpdate();
	var_Appearance = expivot1.VisualAppearance(); com_Appearance = var_Appearance;
		var_s = "gBFLBCJwBAEHhEJAAEhABDwCg6AADACAxRDgMQBQKAAzAJBIYhiG4cYCgMYxXDOCYXABCEYRXBIZQ7BKNIxjSJ5BhIAAyDSJMjSRJUEhqGCWYDleYYYAKHIMQLJQKQSB";
		var_s = var_s + "cQR9EaBZBAWTpQC0OJDTJRI4TNAgbSYAAYRqoCb6loTKypaxjCQQIgkUBpGKdBynEYsDwSGyJCCJWyIbpKAwoVbcs4AYhuJpaQi+d5PFbjVT8dLAMBwLA8EwXAJ+OpfD";
		var_s = var_s + "xXU7eFKpR5fchXTI8UxXFqXZhkeQrfh7KYVRBKdBQRBEFQPJqnahqOpaXo2RoLUJKcQwHTmHYNQTALyuTALZrWeZ3XrgN74LbtZzVQauYRpbCMEr6bpoWLnFi6Ho1U4l";
		var_s = var_s + "lWah1jqSweFqfxPgQQRphi+Yak0YIuqUfJegef4zluaJ3nqPJeCYH4BAeX5TDLBpVGqKRRnwf4flefZtHsX54BYAR/F+EwVnUd5eAMMJKDIChygyIQpAoEh4iIJ5JlgX";
		var_s = var_s + "IcgCXpIGoFwnGEQh6BEKBgmMIICHgIJCAiUAzgyUoAhwJohkiRgygwYpiGoKwzGIcgKCkNQNCMRIbCYCRYk4QoMiOchWDwNBjhiJJaDYTRiGiFwlCQAhOE8JBJHITIRg";
		var_s = var_s + "wZRZFCFCZBkOIUhKTRpCWAwgGYQ4El4NxlBifIWCcCYCFoaoMGaKYyG6GxlBmGJdhkCAWBIeA5g4U4QhMJAImkPIShRVxGgQJRlCIUISh+SJpnCZIeBgFgiHgO4OlOMI";
		var_s = var_s + "NCISByECDQikkGhuh2JwpmqBogCKaYiC6FwhmkQ4yHgYgYiaHopiuaRakCbIsisSpGjYOwaHYKYMCkK5CA2IxrCwCwFigaJrkLTI6lcdANAEgIA=";
		com_Appearance.Add(1,COMVariant::createFromStr(var_s));
	expivot1.Background(183/*exPivotBarAddNew*/,0x1000000);
	expivot1.Import("C:\\Program Files\\Exontrol\\ExPivot\\Sample\\data.txt");
	expivot1.EndUpdate();
}
125
Is it possible to change the visual appearance of the position signs when user changes the column's position by drag and drop

public void init()
{
	COM com_Appearance;
	anytype var_Appearance;
	str var_s;
	;

	super();

	expivot1.BeginUpdate();
	expivot1.HeaderAppearance(4/*Etched*/);
	var_Appearance = expivot1.VisualAppearance(); com_Appearance = var_Appearance;
		var_s = "gBFLBCJwBAEHhEJAAEhABZEGACAADACAxRDgMQBQKAAzAJBIYhiG4cYCgMYxXDOCYXABCEYRXBIZQ7BKNIxjSJwFgmEgADKMA4SOKIZhrE4bBhGaQRUgyI43RhHUBzVI";
		var_s = var_s + "UcQvE6TZRHCQYHgkNIhDJIM7TPLkeSVJaTIRoKhJUogApQThTMgVRDEThkGoSa6soSoYTDBKybLrSLKagOT5YUDKUqSdKEZRpEq1YztWbaQoCUoqVRRVIWfbNd4JJa4a";
		var_s = var_s + "DhWpYdpeeY5R7bWLgBYVVABL7LLRsSxpHxPF6RXxaeI3GKsaS8G6ic6nPQMHj7I4NS5pUa6Rh2VYNSa8AAtETRYznOw4bTMXAjNIea5bAYIIR5HIoDzVbQcCQAHL9DBe";
		var_s = var_s + "EMIQEEISgGhMGZQmocgymoYRRCIEQ0G2HYBnEIBig4V4zCQGINnmagCECY43medZ6H2Pw/g+X5fnueh/h+R5+AKABfkMWgGgGYA4AICoCGCE5WA4CphACMgSD2IRIDIB";
		var_s = var_s + "ICmEd5YGCBpRjGBgegWIYIgWdgoGIRQsiKCZiAiJZ0gGQI4jUS4LECOAiBmDJflGfg2BSY4Al4OhGkOCJ2DgFJjGGfgqgiH5Ch4RhGkqOQmEOEpkFkHQYhJRYyESAokG";
		var_s = var_s + "KHhIhKIxJEmf4VGUeRGFmF5iBkchPhYJQ5GoYIZg6Ug6GoFYmkmNhuhulRGHKGoImefh0BUZ4JmYeoemeSZ2H6HQmgoBgXDqXwUAQgI=";
		com_Appearance.Add(1,COMVariant::createFromStr(var_s));
		com_Appearance.Add(2,"CP:1 0 -36 0 0");
	expivot1.Background(182/*exColumnsPositionSign*/,0x2000000);
	expivot1.Import("C:\\Program Files\\Exontrol\\ExPivot\\Sample\\data.txt");
	expivot1.EndUpdate();
}
124
FilterBarCaption ALL Keyword ( sample 2, result )

public void init()
{
	str var_s;
	;

	super();

	expivot1.BeginUpdate();
	expivot1.Import("C:\\Program Files\\Exontrol\\ExPivot\\Sample\\data.txt");
	expivot1.FilterBarFont(expivot1.Font());
	expivot1.Description(11/*exFilterBarAnd*/,expivot1.FormatABC("`<fgcolor=808080> ` + value + ` </fgcolor>`",COMVariant::createFromStr(expivot1.Description(11/*exFilterBarAnd*/))));
	var_s = "(( ( value replace `[<b>` with `<bgcolor=000000><fgcolor=FFFFFF><b> ` replace `</b>]` with ` </b></bgcolor></fgcolor>` replace `";
	var_s = var_s + "[<s>` with `<bgcolor=C0C0C0><fgcolor=FFFFFF> ` replace `</s>]` with ` </fgcolor></bgcolor>` )  + `<r><fgcolor=808080>` + ( match";
	var_s = var_s + "itemcount < 0 ? ( ( len(value) ? `` : `` ) + `<r>` + abs(matchitemcount + 1) + ` result(s)` ) : (`<r><fgcolor=808080>`+ itemcoun";
	var_s = var_s + "t + ` item(s)`) )))";
	expivot1.FilterBarCaption(var_s);
	expivot1.FilterBarPromptVisible(2583/*exFilterBarCompact | exFilterBarShowCloseIfRequired | exFilterBarSingleLine | exFilterBarCaptionVisible | exFilterBarVisible | exFilterBarPromptVisible*/);
	expivot1.EndUpdate();
}
123
FilterBarCaption ALL Keyword ( sample 1 )

public void init()
{
	;

	super();

	expivot1.BeginUpdate();
	expivot1.Import("C:\\Program Files\\Exontrol\\ExPivot\\Sample\\data.txt");
	expivot1.FilterBarFont(expivot1.Font());
	expivot1.Description(11/*exFilterBarAnd*/,expivot1.FormatABC("`<fgcolor=808080> ` + value + ` </fgcolor>`",COMVariant::createFromStr(expivot1.Description(11/*exFilterBarAnd*/))));
	expivot1.FilterBarCaption("all");
	expivot1.FilterBarPromptVisible(3/*exFilterBarVisible | exFilterBarPromptVisible*/);
	expivot1.EndUpdate();
}
122
FilterBarCaption ALLUI Keyword ( sample 2, result )

public void init()
{
	str var_s;
	;

	super();

	expivot1.BeginUpdate();
	expivot1.Import("C:\\Program Files\\Exontrol\\ExPivot\\Sample\\data.txt");
	expivot1.FilterBarFont(expivot1.Font());
	expivot1.Description(11/*exFilterBarAnd*/,expivot1.FormatABC("`<fgcolor=808080> ` + value + ` </fgcolor>`",COMVariant::createFromStr(expivot1.Description(11/*exFilterBarAnd*/))));
	var_s = "(( ( allui replace `[<b>` with `<bgcolor=000000><fgcolor=FFFFFF><b> ` replace `</b>]` with ` </b></bgcolor></fgcolor>` replace `";
	var_s = var_s + "[<s>` with `<bgcolor=C0C0C0><fgcolor=FFFFFF> ` replace `</s>]` with ` </fgcolor></bgcolor>` )  + `<r><fgcolor=808080>` + ( match";
	var_s = var_s + "itemcount < 0 ? ( ( len(value) ? `` : `` ) + `<r>` + abs(matchitemcount + 1) + ` result(s)` ) : (`<r><fgcolor=808080>`+ itemcoun";
	var_s = var_s + "t + ` item(s)`) )))";
	expivot1.FilterBarCaption(var_s);
	expivot1.FilterBarPromptVisible(3/*exFilterBarVisible | exFilterBarPromptVisible*/);
	expivot1.EndUpdate();
}
121
FilterBarCaption ALLUI Keyword ( sample 1 )

public void init()
{
	;

	super();

	expivot1.BeginUpdate();
	expivot1.Import("C:\\Program Files\\Exontrol\\ExPivot\\Sample\\data.txt");
	expivot1.FilterBarFont(expivot1.Font());
	expivot1.Description(11/*exFilterBarAnd*/,expivot1.FormatABC("`<fgcolor=808080> ` + value + ` </fgcolor>`",COMVariant::createFromStr(expivot1.Description(11/*exFilterBarAnd*/))));
	expivot1.FilterBarCaption("allui");
	expivot1.FilterBarPromptVisible(3/*exFilterBarVisible | exFilterBarPromptVisible*/);
	expivot1.EndUpdate();
}
120
FilterBarCaption AVAILABLE Keyword ( sample 2, result )

public void init()
{
	str var_s;
	;

	super();

	expivot1.BeginUpdate();
	expivot1.Import("C:\\Program Files\\Exontrol\\ExPivot\\Sample\\data.txt");
	expivot1.FilterBarFont(expivot1.Font());
	expivot1.Description(11/*exFilterBarAnd*/,expivot1.FormatABC("`<fgcolor=808080> ` + value + ` </fgcolor>`",COMVariant::createFromStr(expivot1.Description(11/*exFilterBarAnd*/))));
	var_s = "(( ( value replace `[` with `<bgcolor=000000><fgcolor=FFFFFF><b> ` replace `]` with ` </b></bgcolor></fgcolor>` ) + ` ` + ( avai";
	var_s = var_s + "lable replace `[` with `<bgcolor=C0C0C0><fgcolor=FFFFFF><b> ` replace `]` with ` </b></bgcolor></fgcolor>` replace `<s>` with ``";
	var_s = var_s + " replace `</s>` with `` ) + `<fgcolor=808080>` + ( matchitemcount < 0 ? ( ( len(value) ? `` : `` ) + `<r>` + abs(matchitemcount ";
	var_s = var_s + "+ 1) + ` result(s)` ) : (`<r><fgcolor=808080>`+ itemcount + ` item(s)`) )))";
	expivot1.FilterBarCaption(var_s);
	expivot1.FilterBarPromptVisible(3/*exFilterBarVisible | exFilterBarPromptVisible*/);
	expivot1.EndUpdate();
}
119
FilterBarCaption AVAILABLE Keyword ( sample 1 )

public void init()
{
	;

	super();

	expivot1.BeginUpdate();
	expivot1.Import("C:\\Program Files\\Exontrol\\ExPivot\\Sample\\data.txt");
	expivot1.FilterBarFont(expivot1.Font());
	expivot1.Description(11/*exFilterBarAnd*/,expivot1.FormatABC("`<fgcolor=808080> ` + value + ` </fgcolor>`",COMVariant::createFromStr(expivot1.Description(11/*exFilterBarAnd*/))));
	expivot1.FilterBarCaption("value + ` ` + available");
	expivot1.FilterBarPromptVisible(3/*exFilterBarVisible | exFilterBarPromptVisible*/);
	expivot1.EndUpdate();
}
118
Is it possible to somehow highlight the column's name different than its filter value in the control's filter bar ( sample 3, results )

public void init()
{
	str var_s;
	;

	super();

	expivot1.BeginUpdate();
	expivot1.Import("C:\\Program Files\\Exontrol\\ExPivot\\Sample\\data.txt");
	expivot1.FilterBarFont(expivot1.Font());
	expivot1.Description(11/*exFilterBarAnd*/,expivot1.FormatABC("`<fgcolor=808080>` + value + `</fgcolor>`",COMVariant::createFromStr(expivot1.Description(11/*exFilterBarAnd*/))));
	var_s = "(`<b>` + value + `</b><fgcolor=808080>` + ( matchitemcount < 0 ? ( ( len(value) ? `` : `` ) + `<r>` + abs(matchitemcount + 1) + ";
	var_s = var_s + "` result(s)` ) : (`<fgcolor=808080>`+ itemcount + ` item(s)`) )) replace `[` with `<bgcolor=000000><fgcolor=FFFFFF><b> ` replace";
	var_s = var_s + " `]` with ` </b></bgcolor></fgcolor>`";
	expivot1.FilterBarCaption(var_s);
	expivot1.FilterBarPromptVisible(256/*exFilterBarToggle*/);
	expivot1.EndUpdate();
}
117
Is it possible to somehow highlight the column's name different than its filter value in the control's filter bar ( sample 2 )

public void init()
{
	;

	super();

	expivot1.BeginUpdate();
	expivot1.Import("C:\\Program Files\\Exontrol\\ExPivot\\Sample\\data.txt");
	expivot1.FilterBarFont(expivot1.Font());
	expivot1.Description(11/*exFilterBarAnd*/,expivot1.FormatABC("`<fgcolor=808080>` + value + `</fgcolor>`",COMVariant::createFromStr(expivot1.Description(11/*exFilterBarAnd*/))));
	expivot1.FilterBarCaption("value replace `[` with `<bgcolor=000000><fgcolor=FFFFFF><b> ` replace `]` with ` </b></bgcolor></fgcolor>`");
	expivot1.FilterBarPromptVisible(256/*exFilterBarToggle*/);
	expivot1.EndUpdate();
}
116
Is it possible to somehow highlight the column's name different than its filter value in the control's filter bar ( sample 1 )

public void init()
{
	;

	super();

	expivot1.BeginUpdate();
	expivot1.Import("C:\\Program Files\\Exontrol\\ExPivot\\Sample\\data.txt");
	expivot1.Description(11/*exFilterBarAnd*/,expivot1.FormatABC("`<fgcolor=808080>` + value + `</fgcolor>`",COMVariant::createFromStr(expivot1.Description(11/*exFilterBarAnd*/))));
	expivot1.FilterBarCaption("value replace `[` with `<fgcolor=808080>[` replace `]` with `]</fgcolor>`");
	expivot1.FilterBarPromptVisible(256/*exFilterBarToggle*/);
	expivot1.EndUpdate();
}
115
Is it possible to automatically displays the control's filter label to the right

public void init()
{
	;

	super();

	expivot1.BeginUpdate();
	expivot1.Import("C:\\Program Files\\Exontrol\\ExPivot\\Sample\\data.txt");
	expivot1.FilterBarCaption("`<r>` + value");
	expivot1.FilterBarPromptVisible(1280/*exFilterBarShowCloseOnRight | exFilterBarToggle*/);
	expivot1.EndUpdate();
}
114
How can I get the number of results/items being shown in the control's filter bar (sample 4)

public void init()
{
	str var_s;
	;

	super();

	expivot1.BeginUpdate();
	expivot1.Import("C:\\Program Files\\Exontrol\\ExPivot\\Sample\\data.txt");
	expivot1.FilterBarFont(expivot1.Font());
	expivot1.FilterBarPrompt(expivot1.FormatABC("`<b>` + value",COMVariant::createFromStr(expivot1.FilterBarPrompt())));
	var_s = "`<b><r>` + value + `</b><fgcolor=808080>` + ( matchitemcount < 0 ? ( ( len(value) ? `<br>` : `` ) + `<r>` + abs(matchitemcount +";
	var_s = var_s + " 1) + ` result(s)` ) : (`<fgcolor=808080>`+ itemcount + ` item(s)`) )";
	expivot1.FilterBarCaption(var_s);
	expivot1.FilterBarPromptVisible(3591/*exFilterBarCompact | exFilterBarShowCloseOnRight | exFilterBarShowCloseIfRequired | exFilterBarCaptionVisible | exFilterBarVisible | exFilterBarPromptVisible*/);
	expivot1.EndUpdate();
}
113
How can I get the number of results being shown in the control's filter bar (sample 3)

public void init()
{
	str var_s;
	;

	super();

	expivot1.BeginUpdate();
	expivot1.Import("C:\\Program Files\\Exontrol\\ExPivot\\Sample\\data.txt");
	expivot1.FilterBarFont(expivot1.Font());
	var_s = "`<b><r>` + value + `</b><fgcolor=808080>` + ( matchitemcount < 0 ? ( ( len(value) ? `<br>` : `` ) + `<r>` + abs(matchitemcount +";
	var_s = var_s + " 1) + ` result(s)` ) : ``)";
	expivot1.FilterBarCaption(var_s);
	expivot1.FilterBarPromptVisible(2055/*exFilterBarCompact | exFilterBarCaptionVisible | exFilterBarVisible | exFilterBarPromptVisible*/);
	expivot1.EndUpdate();
}
112
How can I get the number of results being shown in the control's filter bar (sample 2, compact)

public void init()
{
	;

	super();

	expivot1.BeginUpdate();
	expivot1.Import("C:\\Program Files\\Exontrol\\ExPivot\\Sample\\data.txt");
	expivot1.FilterBarFont(expivot1.Font());
	expivot1.FilterBarCaption("`<b><r>` + value + `</b><fgcolor=808080>` + ( matchitemcount < 0 ? `<off -4> ` + abs(matchitemcount + 1) + ` result(s)` : ``)");
	expivot1.FilterBarPromptVisible(2071/*exFilterBarCompact | exFilterBarSingleLine | exFilterBarCaptionVisible | exFilterBarVisible | exFilterBarPromptVisible*/);
	expivot1.EndUpdate();
}
111
How can I get the number of results being shown in the control's filter bar (sample 1)

public void init()
{
	;

	super();

	expivot1.BeginUpdate();
	expivot1.Import("C:\\Program Files\\Exontrol\\ExPivot\\Sample\\data.txt");
	expivot1.FilterBarFont(expivot1.Font());
	expivot1.FilterBarCaption("`<b>` + value + `</b><r><fgcolor=808080>` + ( matchitemcount < 0 ? abs(matchitemcount + 1) + ` result(s)` : ``)");
	expivot1.FilterBarPromptVisible(7/*exFilterBarCaptionVisible | exFilterBarVisible | exFilterBarPromptVisible*/);
	expivot1.EndUpdate();
}
110
FilterBarCaption Predefined Keywords

public void init()
{
	str var_s;
	;

	super();

	expivot1.BeginUpdate();
	expivot1.Import("C:\\Program Files\\Exontrol\\ExPivot\\Sample\\data.txt");
	expivot1.LinesAtRoot(-1/*exLinesAtRoot*/);
	expivot1.FilterInclude(1/*exItemsWithChilds*/);
	expivot1.FilterBarFont(expivot1.Font());
	var_s = "`<fgcolor=0000FF><i>value/current</i></fgcolor>: <fgcolor=808080>` + value + `</fgcolor>` + `<br><fgcolor=0000FF><i>available</i";
	var_s = var_s + "></fgcolor>: ` + available + `<br><fgcolor=0000FF><i>allui</i></fgcolor>: ` + allui + `<br><fgcolor=0000FF><i>all</i></fgcolor>:";
	var_s = var_s + " ` + all + `<br><fgcolor=0000FF><i>itemcount</i></fgcolor>: <fgcolor=808080>` + itemcount + `</fgcolor>`+ `<br><fgcolor=0000FF><";
	var_s = var_s + "i>visibleitemcount</i></fgcolor>: <fgcolor=808080>` + visibleitemcount + `</fgcolor>`+ `<br><fgcolor=0000FF><i>matchitemcount</i";
	var_s = var_s + "></fgcolor>: <fgcolor=808080>` + matchitemcount + `</fgcolor>`+ `<br><fgcolor=0000FF><i>promptpattern</i></fgcolor>: <fgcolor=80";
	var_s = var_s + "8080>` + promptpattern + `</fgcolor>`+ `<br><fgcolor=0000FF><i>leafitemcount</i></fgcolor>: <fgcolor=808080>` + leafitemcount + ";
	var_s = var_s + "`</fgcolor>`";
	expivot1.FilterBarCaption(var_s);
	expivot1.FilterBarPromptPattern("USA");
	expivot1.FilterBarPromptVisible(7/*exFilterBarCaptionVisible | exFilterBarVisible | exFilterBarPromptVisible*/);
	expivot1.EndUpdate();
}
109
I am using filter prompt feature, and also column's filter, just wondering if possible to compact displaying the filter bar so it won't show on multiple lines

public void init()
{
	;

	super();

	expivot1.BeginUpdate();
	expivot1.Import("C:\\Program Files\\Exontrol\\ExPivot\\Sample\\data.txt");
	expivot1.FilterBarFont(expivot1.Font());
	expivot1.FilterBarCaption("`<r><i><fgcolor=808080><upline><solidline><sha ;;0>` + value");
	expivot1.FilterBarPromptPattern("USA");
	expivot1.FilterBarPromptVisible(2067/*exFilterBarCompact | exFilterBarSingleLine | exFilterBarVisible | exFilterBarPromptVisible*/);
	expivot1.EndUpdate();
}
108
Just wondering if it is possible to show the filter bar's close button on the right ( sample 2 )

public void init()
{
	;

	super();

	expivot1.BeginUpdate();
	expivot1.Import("C:\\Program Files\\Exontrol\\ExPivot\\Sample\\data.txt");
	expivot1.FilterBarPromptVisible(1281/*exFilterBarShowCloseOnRight | exFilterBarToggle | exFilterBarPromptVisible*/);
	expivot1.FilterBarPrompt(expivot1.FormatABC("`<r>` + value",COMVariant::createFromStr(expivot1.FilterBarPrompt())));
	expivot1.EndUpdate();
}
107
How can I change the visual appearance of the filter bar's close button (EBN)

public void init()
{
	COM com_Appearance;
	anytype var_Appearance;
	str var_s;
	;

	super();

	expivot1.BeginUpdate();
	var_Appearance = expivot1.VisualAppearance(); com_Appearance = var_Appearance;
		var_s = "gBFLBCJwBAEHhEJAAEhABHQDg6AADACAxRDgMQBQKAAzAJBIYhiG4cYCgMZhXDOCYXABCEYRXBIZQ7BKNIxjSJ5BhIAAyDSJMjSRJUEhqGCWYDleYYYAKHIMQLOg7IJj";
		var_s = var_s + "yI4/SJAYCydKAWhxIaZKJHCZoEDaTAADCNVAQp6MEIJVbVEI0e79OgBLp/Z7kECIJJAaRjHQdJxGLA8EhtCQhCZteK6SgMKJYXhWQYRXI1JwvMBrWrdQjiOYELQtMKmS";
		var_s = var_s + "ZNLYGG4dR5SVJbcYhSYsRRFMoyDIOXYDLKsdYqSpXIThObEGgaPqJYjsUjCMKnR7HVIURrBPC9TBPE69ZgmC6ucKPX51ShKFaBWDZcwFAS+UBuYCAILiEAQGZ1XT8ORO";
		var_s = var_s + "icbgJgSTJRlCaZeDsHY7QGR4xkSYp3CaExZAQMgalQYAwjCAAfBANxcA2TgKAUOpDCGFhKg0RpXCwCwDHQHQHEyAIkCkOhbFOGA8A8DohBgRg9AccZcn8EpEjMLI2C2D";
		var_s = var_s + "YxAgQgvAIUIVkoAAPBQDJlECTZ3CCYwDACQwUA8A5MCAWAWDiQi4l8aQOEgLJuBgBgDmYFAzEoIoIl0WALgKYJbBABADAAHgHg8VAMmqCQQDMXABAATYwTmNwBDATJXA";
		var_s = var_s + "iAgjHmNQ5lgQ5QEQEQMmcWg/GwD5ylyNw2gMcJcjsBgBgOQQDDhRpVAMMwnDBFw1B0Ax8D0DxOmmJJIGQTY5hGMAwkwM4CAYLZAmAOJnAqAojiIGg6iieYkmeAYOHaKJ";
		var_s = var_s + "DCyCwjH6AoggsQpQliAJLhgaJ0CESBTnyDwjk+cg4g4P5IHIHJ+BWRRzlYWAxiOUxihsY4KjKLJRGqC44FCegkkkM58iAKAPnIWIWD8SRSFSfQnkmewUhYP4GiGKJ7G0";
		var_s = var_s + "TIbCSUoggqUo0lAQ4LnEcBcD8Coiiif4nE+eAAn2HpOkcFJqi4T5SkyMw/kqQown8IBIBOdA+A+DJrBqVxXEqYo4lCApLhGHBnD8S4ymyfxmg+cwQkQP5egOUZIWoEAk";
		var_s = var_s + "jIeIPBMBJBD+TBjBifwvkuc58hQJQPmFrYykkchclSApKjGOBuD+TRDFCfw3mmIxNi8FxFlOXhVC4aYDFyPgvg2YBcBcLZGCGCJ0DSLRzGSWQ/lmY5+mEP5gmMDBZRSM";
		var_s = var_s + "RsFsOxMhMJJ/DsTpTnwaQaE+N5ojuNhdEYNI5C4TZJO1GRDmCaxnA2Yx4n8IpIjOTBQBQC5TgyYw7gUYRYikC0BYRwsDQBoB8eA6Q2hsE0BUXgywZtYCyHMKwnxSAhAQ";
		var_s = var_s + "HkIQhRrBaDsCwA4ERiB2EWAIYIXhhiVEgAEUYwwYjyASLge4FhHgRDkM8OQih0jWPkGgBBAQ";
		com_Appearance.Add(1,COMVariant::createFromStr(var_s));
	expivot1.Import("C:\\Program Files\\Exontrol\\ExPivot\\Sample\\data.txt");
	expivot1.FilterBarPromptVisible(257/*exFilterBarToggle | exFilterBarPromptVisible*/);
	expivot1.Background(1/*exFooterFilterBarButton*/,0x1000000);
	expivot1.EndUpdate();
}
106
How can I change the visual appearance of the filter bar's close button (solid)

public void init()
{
	;

	super();

	expivot1.BeginUpdate();
	expivot1.Import("C:\\Program Files\\Exontrol\\ExPivot\\Sample\\data.txt");
	expivot1.FilterBarPromptVisible(1/*exFilterBarPromptVisible*/);
	expivot1.Background(1/*exFooterFilterBarButton*/,WinApi::RGB2int(255,0,0));
	expivot1.EndUpdate();
}
105
Is it possible to prevent definitely showing the filter bar's close button

public void init()
{
	;

	super();

	expivot1.BeginUpdate();
	expivot1.Import("C:\\Program Files\\Exontrol\\ExPivot\\Sample\\data.txt");
	expivot1.FilterBarPromptVisible(1/*exFilterBarPromptVisible*/);
	expivot1.Background(1/*exFooterFilterBarButton*/,-1);
	expivot1.EndUpdate();
}
104
Is it possible to show the close button only if there is a filter applied

public void init()
{
	;

	super();

	expivot1.BeginUpdate();
	expivot1.Import("C:\\Program Files\\Exontrol\\ExPivot\\Sample\\data.txt");
	expivot1.FilterBarPromptVisible(513/*exFilterBarShowCloseIfRequired | exFilterBarPromptVisible*/);
	expivot1.EndUpdate();
}
103
The control's filter bar is not closed once I click the close button (toggle)
public void init()
{
	;

	super();

	expivot1.BeginUpdate();
	expivot1.Import("C:\\Program Files\\Exontrol\\ExPivot\\Sample\\data.txt");
	expivot1.FilterBarCaption("`<r><fgcolor=808080>` + value");
	expivot1.FilterBarPromptPattern("USA");
	expivot1.FilterBarPromptVisible(2323/*exFilterBarCompact | exFilterBarToggle | exFilterBarSingleLine | exFilterBarVisible | exFilterBarPromptVisible*/);
	expivot1.EndUpdate();
}
102
How can I display the control's filter on a single line

public void init()
{
	;

	super();

	expivot1.BeginUpdate();
	expivot1.Import("C:\\Program Files\\Exontrol\\ExPivot\\Sample\\data.txt");
	expivot1.FilterBarCaption("len(value) ? `filter for: <fgcolor 808080>` + value  : `<fgcolor 808080>no filter`");
	expivot1.FilterBarPromptVisible(18/*exFilterBarSingleLine | exFilterBarVisible*/);
	expivot1.EndUpdate();
}
101
How can I display the control's filter on a single line (prompt-combined)

public void init()
{
	;

	super();

	expivot1.BeginUpdate();
	expivot1.Import("C:\\Program Files\\Exontrol\\ExPivot\\Sample\\data.txt");
	expivot1.FilterBarCaption("`<r>` + value");
	expivot1.FilterBarPromptVisible(2067/*exFilterBarCompact | exFilterBarSingleLine | exFilterBarVisible | exFilterBarPromptVisible*/);
	expivot1.EndUpdate();
}