Skip to main content

ThemeBase.IOSRefreshCustomizer Property

Customizes the color of the iOS refreshing icon.

Namespace: DevExpress.Mobile.DataGrid.Theme

Assembly: DevExpress.Mobile.Grid.v18.2.dll

Declaration

public IIOSRefreshCustomizer IOSRefreshCustomizer { get; set; }

Property Value

Type Description
IIOSRefreshCustomizer

An object of the type which implements the IIOSRefreshCustomizer interface.

Remarks

Important

This documentation topic describes legacy technology. We no longer develop new functionality for the GridControl and suggest that you use the new DataGridView control instead.

To enable the pull-to-refresh functionality, follow the steps from the How to: Implement Pull-to-Refresh document. After the feature has been added to a grid, you can customize the iOS refreshing icon via the IOSRefreshCustomizer property.

GridControl provides you with two predefined themes - Light and Dark. The Default theme depends on the mobile platform. For iOS applications, the Default theme is Light, for Android - is Dark. To apply another theme to a grid, use the ThemeManager.ThemeName property. Then, you can customize the applied theme (if needed). For more information, see the How to: Customize Themes document.

Important

To apply customization to a grid, call the ThemeManager.RefreshTheme method.

See Also