Version

Search Results

About Data Filters

About Data Filters All embeddable editors support data filter functionality, allowing you to perform customized data translations and otherwise manipulate data’s content and format as it moves between the application and the data source. You can use data filters for several typical scenarios: Convert or transform ...

About WinGrid

About WinGrid WinGrid™ is a hierarchical data bound grid control. It has full support for displaying hierarchical data provided by any data source that implements IList, IBindingList or ITypedList. Note Note WinGrid must be bound to data. In other words if you do not bind WinGrid to a DataSource, it cannot be used...

Accessing a Specific Row in WinGrid

Accessing a Specific Row in WinGrid The way in which you access a particular row depends on the row, as well as the information you have about the row. The following procedure is an example of how to access rows in the WinGrid™ by traversing the WinGrid’s structure. To traverse the WinGrid to access a specific row...

Accessing Data

Accessing Data The main purpose of the™ control is to display or input data. Click on the following links to learn about the various methods of accessing and retrieving data. Binding WinGrid to a Flat Data Source Binding to Program-Generated Flat Data Binding WinGrid to a Hierarchical Data Source Binding to Progra...

Adding New Rows to WinGrid

Adding New Rows to WinGrid Background Adding new rows to the WinGrid™ can be accomplished in many different ways. The developer can turn on the built-in Add New box and the user can click the appropriate button. The developer can implement some other mechanism such as a button and invoke the .AddNew method of the ...

Adding Row Description Using Row Preview

Adding Row Description Using Row Preview Row previewing allows you to add a description to a row. To add a description to a row: In order to use row preview, it must first be enabled. The AutoPreviewEnabled property is a property of each Band object in the grid. This can be done in the InitializeLayout event. In V...

Adding Rows to WinGrid Programmatically

Adding Rows to WinGrid Programmatically Before you Begin It is possible to add rows programmatically to WinGrid™ by using the AddRow method of the UltraGridBand object. The AddRow method allows you to add a row through a button click or through some other event. Keep in mind, that when the AddRow method is called,...

Adding Unbound Columns to WinGrid

Adding Unbound Columns to WinGrid You can add an unbound column to the WinGrid™. This is useful for displaying calculations based on other fields in the row, or for placing check boxes into the grid so users can select multiple rows. Note Note Note : A grid must have at least one bound column. It can never contain...

Adding WinGrid to a Form

Adding WinGrid to a Form Background This Quick Start tutorial helps get WinGrid™ running in a Windows Application Project. Before starting this tutorial the developer should be familiar with Visual Studio and ADO.NET. Add UltraWinGrid to Form Select Design view for form. Click UltraGrid in the Toolbox then click o...

Advanced Row Layouts (Part 1 of 2)

Advanced Row Layouts (Part 1 of 2) The following will now elaborate on what we have learned about Row Layouts. We will now explore some more advanced concepts that will show us how to create a more advanced layout. The following steps assume you have a Windows Form along with a WinGrid bound to a design time avail...