Intersoft ClientUI Documentation
FrozenColumnCount Property



Gets or sets the number of columns that the user cannot scroll horizontally.
Syntax
<CategoryAttribute("Layout")>
Public Property FrozenColumnCount As Integer
Dim instance As UXGridView
Dim value As Integer
 
instance.FrozenColumnCount = value
 
value = instance.FrozenColumnCount
[CategoryAttribute("Layout")]
public int FrozenColumnCount {get; set;}
[CategoryAttribute("Layout")]
public:
property int FrozenColumnCount {
   int get();
   void set (    int value);
}
Remarks

Frozen columns are columns that are always displayed and cannot be scrolled out of visibility. Frozen columns are always the leftmost columns in display order. You cannot drag frozen columns into the group of unfrozen columns or drag unfrozen columns into the group of frozen columns.

To enable frozen columns in UXGridView, you need to set the FrozenColumnCount property to a value that represents the number of columns to freeze.

Example
XAML
Copy Code
<Intersoft:UXGridView ItemsSource="{Binding Products}" FrozenColumnCount="2"/>
Requirements

Target Platforms: 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

Reference

UXGridView Class
UXGridView Members

Send Feedback