Click or drag to resize
GridFeatures Class
An interface for enabling or disabling grid features.
Inheritance Hierarchy
SystemObject
  Stingray.GridGridFeatures

Namespace: Stingray.Grid
Assembly: Stingray.GridControl (in Stingray.GridControl.dll) Version: 14.0.0.0
Syntax
[TypeConverterAttribute(typeof(ExpandableObjectConverter))]
public class GridFeatures : ISupportInitialize

The GridFeatures type exposes the following members.

Constructors
  NameDescription
Public methodGridFeatures
Default contructor
Top
Methods
  NameDescription
Public methodBeginInit
Implements ISupportInitialize.
Public methodEndInit
Implements ISupportInitialize.
Top
Properties
  NameDescription
Public propertyEnableCellTips
Gets or sets a value indicating if Cell Tips are enabled.
Public propertyEnableFindReplace
Enables or disables Find & Replace.
Public propertyEnableFormulaEngine
Gets or sets a value indicating if Formula Engine support is enabled.
Public propertyEnableIntelliMouse
Gets or sets a value indicating if Intelli Mouse support is enabled.
Public propertyEnableMouseWheel
Gets or sets a value to show that the mouse wheel is supported.
Public propertyEnableScrollTips
Gets or sets a value indicating if Scroll Tips are enabled.
Public propertyEnableToolTips
Gets or sets a value indicating if Tool Tips are enabled.
Public propertyEnableWorkSheetFunctions
Gets or sets a value indicating if the built-in worksheet functions are enabled.
Top
Remarks
Using this class, the following grid features can be enabled or disabled at design time:
  • Formula Engine Support
  • Built-in Worksheet Functions
  • Scroll Tips
  • IntelliMouse Support
  • Mouse Wheel Support
  • Cell Tips
  • Tool Tips
  • Find/replace
These features must be manipulated at design time. This requirement is enforced by the GridFeatures implementation. If these features are manipulated at run time, an InvalidOperationException is thrown.
See Also