Gets whether a block of cells on this sheet is currently selected.
Syntax
Visual Basic (Declaration) | |
---|
Public ReadOnly Property IsBlockSelected As Boolean |
Visual Basic (Usage) | Copy Code |
---|
Dim instance As SheetView
Dim value As Boolean
value = instance.IsBlockSelected |
C# | |
---|
public bool IsBlockSelected {get;} |
Property Value
Boolean:
true if range of cells is selected;
false otherwise
Remarks
Example
This example illustrates the use of this member by returning whether there is a range of cells currently selected.
C# | Copy Code |
---|
bool b;
fpSpread1.ActiveSheet.AddSelection(0, 0, 3, 3);
b = fpSpread1.ActiveSheet.IsBlockSelected;
label1.Text = "IsBlockSelected for the sheet = " + b.ToString(); |
Visual Basic | Copy Code |
---|
Dim b As Boolean
FpSpread1.ActiveSheet.AddSelection(0, 0, 3, 3)
b = FpSpread1.ActiveSheet.IsBlockSelected
Label1.Text = "IsBlockSelected for the sheet = " & b.ToString() |
Requirements
Target Platforms: Windows 2000 Professional (SP4), Windows 2000 Server, Windows 2003 Server (SP1), Windows 2008, Windows XP (SP2), Windows Vista, Windows 7, Windows 8
See Also