Spread Windows Forms 9.0 Product Documentation
IsAnyRowViewIndexSet Method
Example 


Determines whether any rows have been mapped to different row indexes in the sheet.
Syntax
'Declaration
 
Public Function IsAnyRowViewIndexSet() As Boolean
'Usage
 
Dim instance As SheetView.DocumentModels
Dim value As Boolean
 
value = instance.IsAnyRowViewIndexSet()
public bool IsAnyRowViewIndexSet()

Return Value

True if there is a mapping; otherwise, false
Remarks
The row and column indexes in the SheetView are the same as the ones in the models until a mapping is created.
Example
This example returns if any mappings are set.
fpSpread1.ActiveSheet.Models.SetViewColumnIndex(2,0);
fpSpread1.ActiveSheet.Models.SetViewRowIndex(1,0);
bool b = fpSpread1.ActiveSheet.Models.IsAnyColumnViewIndexSet();
MessageBox.Show("Mappings set for columns is " + b.ToString());
b = fpSpread1.ActiveSheet.Models.IsAnyRowViewIndexSet();
MessageBox.Show("Mappings set for rows is " + b.ToString()); 
FpSpread1.ActiveSheet.Models.SetViewColumnIndex(2,0)
FpSpread1.ActiveSheet.Models.SetViewRowIndex(1,0)
dim b As Boolean = FpSpread1.ActiveSheet.Models.IsAnyColumnViewIndexSet()
MessageBox.Show("Mappings set for columns is " + b.ToString())
b = FpSpread1.ActiveSheet.Models.IsAnyRowViewIndexSet()
MessageBox.Show("Mappings set for rows is " & b.ToString())
Requirements

Target Platforms: Windows 2000 Professional (SP4), Windows 2000 Server, Windows 2003 Server (SP1), Windows Server 2012 R2, Windows 2008, Windows XP (SP2), Windows Vista, Windows 7, Windows 8, Windows 8.1, Windows 10

See Also

Reference

SheetView.DocumentModels Class
SheetView.DocumentModels Members

 

 


Copyright © GrapeCity, inc. All rights reserved.