Intersoft ClientUI Documentation
FrozenColumnCount Property
See Also  Send Feedback
Intersoft.Client.UI.Data Namespace > UXGridView Class : FrozenColumnCount Property






Gets or sets the number of columns that the user cannot scroll horizontally.

Syntax

Visual Basic (Declaration) 
<CategoryAttribute("Layout")>
Public Property FrozenColumnCount As Integer
Visual Basic (Usage)Copy Code
Dim instance As UXGridView
Dim value As Integer
 
instance.FrozenColumnCount = value
 
value = instance.FrozenColumnCount
C# 
[CategoryAttribute("Layout")]
public int FrozenColumnCount {get; set;}
Delphi 
public read-write property FrozenColumnCount: Integer; 
JScript 
CategoryAttribute("Layout")
public function get,set FrozenColumnCount : int
Managed Extensions for C++ 
[CategoryAttribute("Layout")]
public: __property int get_FrozenColumnCount();
public: __property void set_FrozenColumnCount( 
   int value
);
C++/CLI 
[CategoryAttribute("Layout")]
public:
property int FrozenColumnCount {
   int get();
   void set (    int value);
}

Example

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

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.

Requirements

Target Platforms: Windows 98, Windows NT 4.0, Windows Millennium Edition, Windows 2000, Windows XP Home Edition, Windows XP Professional, Windows Server 2003 family, Windows Vista, Windows Server 2008 family

See Also

© 2012 All Rights Reserved.