Copies the direct styles from one specified range of cells to another.
Syntax
Parameters
- fromRow
- Row index of cell from which to begin copying
- fromColumn
- Column index of cell from which to begin copying
- toRow
- Row index at which to paste cell style
- toColumn
- Column index at which to paste cell style
- rowCount
- Number of rows to copy
- columnCount
- Number of columns to copy
Example
This example copies the specified range of direct styles from one location to another.
Visual Basic | Copy Code |
---|
Dim defstyleModel As New FarPoint.Win.Spread.Model.DefaultSheetStyleModel()
defstyleModel = FpSpread1.ActiveSheet.Models.Style
defstyleModel.Copy(0, 0, 10, 10, 5, 5) |
C# | Copy Code |
---|
FarPoint.Win.Spread.Model.DefaultSheetStyleModel defstyleModel = new FarPoint.Win.Spread.Model.DefaultSheetStyleModel();
defstyleModel = (FarPoint.Win.Spread.Model.DefaultSheetStyleModel)fpSpread1.ActiveSheet.Models.Style;
defstyleModel.Copy(0, 0, 10, 10, 5, 5); |
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