Spread for ASP.NET 8.0 Product Documentation
ActiveRow Property
Example 


Gets or sets the active row.
Syntax
'Declaration
 
Public Property ActiveRow As Integer
'Usage
 
Dim instance As SheetView
Dim value As Integer
 
instance.ActiveRow = value
 
value = instance.ActiveRow
public int ActiveRow {get; set;}

Property Value

Integer index of the currently selected row
Remarks

This property is available at run time only.

Set this property to specify the active row. Return the value of this property to retrieve the row index of the active row.

When the active row changes, the ActiveRowChanged event occurs.

This property is saved in the view state.

Example
This example creates a SheetView object and assigns it to the active sheet. The ActiveColumn and ActiveRow properties are set and a value is placed in the active cell. The AllowInsert and AllowDelete properties are set to true so that when the user clicks the Insert button on the command bar a row is inserted, when the user clicks the Add button a row is added at the bottom, and when the user clicks the Delete button the selected row is deleted.
FarPoint.Web.Spread.SheetView sv = FpSpread1.ActiveSheetView;
sv.ActiveColumn = 2;
sv.ActiveRow = 2;
sv.SetValue(sv.ActiveColumn, sv.ActiveRow, "Active");
sv.OperationMode = FarPoint.Web.Spread.OperationMode.Normal;
sv.AllowInsert = True;
sv.AllowDelete = True;
Dim sv As FarPoint.Web.Spread.SheetView
sv = FpSpread1.ActiveSheetView
sv.ActiveColumn = 2
sv.ActiveRow = 2
sv.SetValue(sv.ActiveColumn, sv.ActiveRow, "Active")
sv.OperationMode = FarPoint.Web.Spread.OperationMode.Normal
sv.AllowInsert = True
sv.AllowDelete = True
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

SheetView Class
SheetView Members
EditRow Property
ActiveColumn Property

 

 


Copyright © GrapeCity, inc. All rights reserved.