Version

ShowCalculatingText Property (UltraGridOverride)

Specifies whether cells or summaries in the grid will display "#Calculating" when calculating with an UltraCalcManager.
Syntax
'Declaration
 
Public Property ShowCalculatingText As Infragistics.Win.DefaultableBoolean
public Infragistics.Win.DefaultableBoolean ShowCalculatingText {get; set;}
Remarks

You can use ShowCalculatingText property to explicitly turn on or turn off the display of the text during calculations.

Example
Following code sets ShowCalculatingText property on the display layout, on a band and on a specific column.

Imports Infragistics.Shared
Imports Infragistics.Win
Imports Infragistics.Win.UltraWinGrid


    Private Sub Button1_Click(ByVal sender As Object, ByVal e As System.EventArgs) Handles button1.Click
        ' ShowCalculatingText specifies whether to display #Calculating in cells while they
        ' are being calculated. Setting the property on the layout's override affects the
        ' whole grid.
        Me.UltraGrid1.DisplayLayout.Override.ShowCalculatingText = DefaultableBoolean.True

        ' You can override this setting on a specific band.
        Me.UltraGrid1.DisplayLayout.Bands(1).Override.ShowCalculatingText = DefaultableBoolean.False

        ' You can also override it on a specific column.
        Me.UltraGrid1.DisplayLayout.Bands(1).Columns(0).ShowCalculatingText = DefaultableBoolean.False
    End Sub
using Infragistics.Shared;
using Infragistics.Win;
using Infragistics.Win.UltraWinGrid;
using System.Diagnostics;


		private void button1_Click(object sender, System.EventArgs e)
		{
			// ShowCalculatingText specifies whether to display #Calculating in cells while they
			// are being calculated. Setting the property on the layout's override affects the
			// whole grid.
			this.ultraGrid1.DisplayLayout.Override.ShowCalculatingText = DefaultableBoolean.True;

			// You can override this setting on a specific band.
			this.ultraGrid1.DisplayLayout.Bands[1].Override.ShowCalculatingText = DefaultableBoolean.False;

			// You can also override it on a specific column.
			this.ultraGrid1.DisplayLayout.Bands[1].Columns[0].ShowCalculatingText = DefaultableBoolean.False;
		}
Requirements

Target Platforms: Windows 10, Windows 8.1, Windows 8, Windows 7, Windows Server 2012, Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

See Also