Copies data from another style object
Namespace:
Aspose.Cells
Assembly:
Aspose.Cells (in Aspose.Cells.dll) Version: 21.1.0.0 (21.1)
Syntaxpublic void Copy(
Style style
)
Public Sub Copy (
style As Style
)
public:
void Copy(
Style^ style
)
member Copy :
style : Style -> unit
Parameters
- style
- Type: Aspose.CellsStyle
Source Style object
Remarks
This method does not copy the name of the style.
If you want to copy the name, please call the following codes after copying style:
destStyle.Name = style.Name.
See Also