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
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.NET | Copy 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