Spread Windows Forms 6.0 Product Documentation
NonEmptyItemFlag Enumeration
Example  See Also  Support Options
FarPoint.Win.Spread Assembly > FarPoint.Win.Spread Namespace : NonEmptyItemFlag Enumeration


Glossary Item Box

Specifies the type of contents of a cell.

Syntax

Visual Basic (Declaration) 
Public Enum NonEmptyItemFlag 
   Inherits System.Enum
Visual Basic (Usage)Copy Code
Dim instance As NonEmptyItemFlag
C# 
public enum NonEmptyItemFlag : System.Enum 

Members

MemberDescription
Data[1] Indicates that a cell contains data
Style[2] Indicates that a cell contains formatting information

Example

C#Copy Code
int i, j;
fpSpread1.Columns[2].CellType = new FarPoint.Win.Spread.CellType.DateTimeCellType();
for( i = 0; i < 10; i++ )
    fpSpread1.ActiveSheet.SetValue(i, 0, i + 1);
j = 0;
for( i = 106;  i > 96; i-- )
{
    fpSpread1.ActiveSheet.SetValue(j, 1, Convert.ToChar(i));
    j += 1;
}
System.DateTime mydate = System.DateTime.Now;
for( i = 0; i < 10; i++ )
    fpSpread1.ActiveSheet.SetValue(i, 2, mydate.AddDays(i));
label1.Text = "The last non-empty column and row is: Column( " + fpSpread1.ActiveSheet.GetLastNonEmptyColumn(FarPoint.Win.Spread.NonEmptyItemFlag.Data).ToString()
+ ") - Row(" + fpSpread1.ActiveSheet.GetLastNonEmptyRow(FarPoint.Win.Spread.NonEmptyItemFlag.Data).ToString() + ")";
Visual BasicCopy Code
Dim i As Integer, j As Integer
FpSpread1.ActiveSheet.Columns(2).CellType = New FarPoint.Win.Spread.CellType.DateTimeCellType()
For i = 0 To 9
    FpSpread1.ActiveSheet.SetValue(i, 0, i + 1)
Next
j = 0
For i = 106 To 97 Step -1
    FpSpread1.ActiveSheet.SetValue(j, 1, Convert.ToChar(i))
    j += 1
Next
Dim mydate As DateTime = Now
For i = 0 To 9
    FpSpread1.ActiveSheet.SetValue(i, 2, mydate.AddDays(i))
Next
Label1.Text = "The last non-empty column and row is: Column( " & FpSpread1.ActiveSheet.GetLastNonEmptyColumn(FarPoint.Win.Spread.NonEmptyItemFlag.Data).ToString()
& ") - Row(" & FpSpread1.ActiveSheet.GetLastNonEmptyRow(FarPoint.Win.Spread.NonEmptyItemFlag.Data).ToString() & ")"

Inheritance Hierarchy

System.Object
   System.ValueType
      System.Enum
         FarPoint.Win.Spread.NonEmptyItemFlag

Requirements

Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

See Also

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