Spread Windows Forms 7.0 Product Documentation
NextNonEmptyColumnInRow Method
See Also  Example Support Options
FarPoint.Win.Spread Assembly > FarPoint.Win.Spread.Model Namespace > BaseSheetStyleModel Class : NextNonEmptyColumnInRow Method


row
Row index
column
Column index before the column to start looking (-1 to start at column 0)

Glossary Item Box

Gets the index of the next column in a specified row that contains style settings.

Syntax

Visual Basic (Declaration) 
Public Overridable Function NextNonEmptyColumnInRow( _
   ByVal row As Integer, _
   ByVal column As Integer _
) As Integer
Visual Basic (Usage)Copy Code
Dim instance As BaseSheetStyleModel
Dim row As Integer
Dim column As Integer
Dim value As Integer
 
value = instance.NextNonEmptyColumnInRow(row, column)
C# 
public virtual int NextNonEmptyColumnInRow( 
   int row,
   int column
)

Parameters

row
Row index
column
Column index before the column to start looking (-1 to start at column 0)

Return Value

Integer column index for the next cell in the row containing a value, or -1 if no columns contain a value

Example

This example returns the index of the next column in a specified row that contains style settings.
C#Copy Code
FarPoint.Win.Spread.Model.BaseSheetStyleModel styleModel; 
FarPoint.Win.Spread.StyleInfo sInfo = new FarPoint.Win.Spread.StyleInfo(); 
int i; 
sInfo.BackColor = Color.Red; 
fpSpread1.ActiveSheet.Models.Style.SetDirectInfo(0, 0, sInfo); 
styleModel = (FarPoint.Win.Spread.Model.BaseSheetStyleModel)fpSpread1.ActiveSheet.Models.Style; 
i = styleModel.NextNonEmptyColumnInRow(0, -1)
MessageBox.Show("The next non-empty column is " + i.ToString())
Visual BasicCopy Code
Dim styleModel As FarPoint.Win.Spread.Model.BaseSheetStyleModel
Dim sInfo As New FarPoint.Win.Spread.StyleInfo
Dim i As Integer
sInfo.BackColor = Color.Red
styleModel = FpSpread1.ActiveSheet.Models.Style
FpSpread1.ActiveSheet.Models.Style.SetDirectInfo(0, 0, sInfo)
i = styleModel.NextNonEmptyColumnInRow(0, -1)
MessageBox.Show("The next non-empty column is " & i.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

© 2002-2014 ComponentOne, a division of GrapeCity. All Rights Reserved.