ContributionsMost RecentMost LikesSolutionsRe: Syncfusion.Windows.Forms.Grid.Grouping.GridGroupingControl Cell Text ValueI found the solution. this.grid.Table.GetTableCellStyle(rec,"ColumnName").FormattedText; URL: http://staging.syncfusion.com/support/forums/grid-windows/59144Re: Syncfusion.Windows.Forms.Grid.Grouping.GridGroupingControl Cell Text ValueSpecifically, I'm looking for something similiar to the FormattedText available for the Syncfusion GridDataBoundGrid Something like this: GridObj.Item(RowIndex, ColIndex).FormattedText.OleValueSyncfusion.Windows.Forms.Grid.Grouping.GridGroupingControl Cell Text ValueHello, I need to know how I can get the text value of the cells within a Syncfusion.Windows.Forms.Grid.Grouping.GridGroupingControl control. I'm currently experiencing a problem where the wValue (Positive #) does not match what's shown as as the cell's text (Negative Number).Re: Infragistics RecordListControl Thanks Helen for that information. I was able to see the extended properties after enabling the derived property of the class. After doing this, however, another issue is seen as wValue property does not provide the actual value displayed on screen, but the underlying and unformatted data. e.g. A (100.00) displayed in a cell would come up as -100 in wValue. Is there anyway to test what's the value in the cell? Infragistics RecordListControl Hello, We have a grid created using Infragistics.Windows.DataPresenter.RecordListControl we need to check / enter values into. The RecordListControl's children consists of Infragistics.Windows.DataPresenter.DataRecordPresenter (the rows). This list of DataRecordPresenters, however, changes when I expand a collapsed row in the grid. Using Object Spy, I do not see a Row / Column extended property available. Is there a way to interact with a particular cell (checking it's value and entering values) by referencing it's row / column index? Thanks. Table Environment Variable via COM Hello, I'm having a problem casting a table environment variable to it's correct type. I'm currently controlling TestComplete via COM and doing the following on the .NET (C#) side: var proj = IntegrationObject.GetObjectByName("Project"); var tableVars = proj.Variables; ItcTableVariable Table1 = (ItcTableVariable)tableVars.VariableByName("TheTableVariable") After casting Table1 to ItcTableVariable, I got the following exception: + $exception {"Unable to cast COM object of type 'System.__ComObject' to interface type 'TestComplete.ItcTableVariable'. This operation failed because the QueryInterface call on the COM component for the interface with IID '{1615C685-B588-40CB-8AAA-E4D74C963B59}' failed due to the following error: No such interface supported (Exception from HRESULT: 0x80004002 (E_NOINTERFACE))."} System.Exception {System.InvalidCastException} I presume I'm going to hit the same problem casting to an ItcTableVariableIterator as well (which is what my next step would be). Please advise. Thanks. Re: Suppress save after test executionIs there a way to do this when executing TestComplete via COM?Performance: Assembly (CLR Bridge) vs ScriptsIn TestComplete, is it better to write commonly used functions/classes in the preferred scripting language (e.g. VBScript), or write them in an assembly and use them via CLR Bridge? My thought is the speed of the script interpretation cannot match the execution of compiled code. However, since there's probably overhead for using the CLR Bridge, in the end ...which one is the winner in terms of performance ...TestComplete interpreting scripts or TestComplete calling compiled code via CLR Bridge? Assume a situation where the calls to these classes/functions are frequently made.Re: Get Mapped Object From Alias ObjectThanks Alex!Re: Get Mapped Object From Alias ObjectThanks Robert for your help