Spread 8.0 Documentation
Example
Support Options

Glossary Item Box

Example


The following example sets the item data associated with the specified row.

C++

for(x = m_Spread.GetSelBlockRow( ); x <= m_Spread.GetSelBlockRow2( ); x++)
    {
    m_Spread.SetRowItemData(x, l);
    }

Visual Basic

For x = FP_Case.fpSpread1.SelBlockRow To FP_Case.fpSpread1.SelBlockRow2
l = Val(fpSpread1.Text)
fpSpread1.SetRowItemData FP_Case.x, l
fpSpread1.Row = fpSpread1.Row + 1
Next x

Copyright © GrapeCity, inc. All rights reserved.