Spread for ASP.NET 8.0 Product Documentation
HeaderIndicatorPositionAdjusting Property
Example 


Gets or sets the distance between the sorting and filtering indicators and the right edge of the column.
Syntax
'Declaration
 
Public Property HeaderIndicatorPositionAdjusting As Integer
'Usage
 
Dim instance As FpSpread
Dim value As Integer
 
instance.HeaderIndicatorPositionAdjusting = value
 
value = instance.HeaderIndicatorPositionAdjusting
public int HeaderIndicatorPositionAdjusting {get; set;}

Property Value

A System.Int32 value that can move the sort and filter indicator to the left.
Remarks
With a touch device, set this property to move the sort and filter indicator to the left. This makes the resizing operation easier.
Example
This example sets the HeaderIndicatorPositionAdjusting property.
FpSpread1.Sheets[0].Columns.Count = 10;
FpSpread1.Sheets[0].Rows.Count = 20;
FpSpread1.Sheets[0].AllowSort = true;            
FpSpread1.HeaderIndicatorPositionAdjusting = 5;
FpSpread1.Sheets(0).Columns.Count = 10
FpSpread1.Sheets(0).Rows.Count = 20
FpSpread1.Sheets(0).AllowSort = True           
FpSpread1.HeaderIndicatorPositionAdjusting = 5
Requirements

Target Platforms: Windows 7, Windows 8, Windows Vista, Windows Server 2000, Windows 2000 Professional, Windows XP Professional, Windows NT 4.0 Workstation, SP6, Windows NT 4.0 Server, SP6

See Also

Reference

FpSpread Class
FpSpread Members

 

 


Copyright © GrapeCity, inc. All rights reserved.