Spread for ASP.NET 7.0 Product Documentation
HeaderIndicatorPositionAdjusting Property
See Also  Example Support Options
FarPoint.Web.Spread Assembly > FarPoint.Web.Spread Namespace > FpSpread Class : HeaderIndicatorPositionAdjusting Property


Glossary Item Box

Gets or sets the distance between the sorting and filtering indicators and the right edge of the column.

Syntax

Visual Basic (Declaration) 
Public Property HeaderIndicatorPositionAdjusting As Integer
Visual Basic (Usage)Copy Code
Dim instance As FpSpread
Dim value As Integer
 
instance.HeaderIndicatorPositionAdjusting = value
 
value = instance.HeaderIndicatorPositionAdjusting
C# 
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.
C#Copy Code
FpSpread1.Sheets[0].Columns.Count = 10;
FpSpread1.Sheets[0].Rows.Count = 20;
FpSpread1.Sheets[0].AllowSort = true;            
FpSpread1.HeaderIndicatorPositionAdjusting = 5;
VB.NETCopy Code
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

© 2002-2014 ComponentOne, a division of GrapeCity. All Rights Reserved.