FarPoint.Web.Spread Assembly > FarPoint.Web.Spread Namespace > RowHeader Class : SetClip Method |
'Declaration Public Sub SetClip( _ ByVal row As Integer, _ ByVal column As Integer, _ ByVal rowCount As Integer, _ ByVal columnCount As Integer, _ ByVal value As String _ )
Exception | Description |
---|---|
System.ArgumentOutOfRangeException | Specified row index is out of range; must be between -1 and the total number of rows |
System.ArgumentOutOfRangeException | Specified column index is out of range; must be between -1 and the total number of columns |
FarPoint.Web.Spread.RowHeader r; string s; r = FpSpread1.ActiveSheetView.RowHeader; r.ColumnCount = 6; r.SetClip(0, 0, 2, 4, "1\t2\t3\t4\r\n5\t6\t7\t8"); s = r.GetClip(0, 0, 2, 4); ListBox1.Items.Add(s);
Dim r As FarPoint.Web.Spread.RowHeader Dim s As String r = FpSpread1.ActiveSheetView.RowHeader r.ColumnCount = 6 r.SetClip(0, 0, 2, 4, "1" + Chr(9) + "2" + Chr(9) + "3" + Chr(9) + "4" + vbCrLf + "5" + Chr(9) + "6" + Chr(9) + "7" + Chr(9)+ "8") s = r.GetClip(0, 0, 2, 4) ListBox1.Items.Add(s)
Target Platforms: Windows 7, Windows 8, Windows 10, Windows Vista, Windows Server 2003, Windows Server 2008, Windows Server 2012, Windows XP Professional