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 styles
- toColumn
- Column index at which to paste cell styles
- 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 2000 Professional (SP4), Windows 2000 Server, Windows 2003 Server (SP1), Windows 2008, Windows XP (SP2), Windows Vista, Windows 7, Windows 8
See Also