Spread for ASP.NET 9.0 Product Documentation
CopyFrom Method (NamedStyle)
Example 


Specifies the StyleInfo or NamedStyle object from which to copy
Copies the properties of the specified object to the current object.
Syntax
'Declaration
 
Public Overrides Sub CopyFrom( _
   ByVal obj As Object _
) 
'Usage
 
Dim instance As NamedStyle
Dim obj As Object
 
instance.CopyFrom(obj)
public override void CopyFrom( 
   object obj
)

Parameters

obj
Specifies the StyleInfo or NamedStyle object from which to copy
Example
This example copies a StyleInfo object into a NamedStyle object and uses it to set the background color of the headers.
FarPoint.Web.Spread.StyleInfo si = new FarPoint.Web.Spread.StyleInfo();
si.BackColor = Color.Yellow;
si.Font.Bold = true;
FarPoint.Web.Spread.NamedStyle parent = new FarPoint.Web.Spread.NamedStyle("StyleHeaders", "HeadersDefault");
parent.CopyFrom(si);
FpSpread1.NamedStyles.Add(parent);
FpSpread1.ActiveSheetView.ColumnHeader.DefaultStyle = parent;
FpSpread1.ActiveSheetView.RowHeader.DefaultStyle = parent;
Dim si As New FarPoint.Web.Spread.StyleInfo()
si.BackColor = Color.Yellow
si.Font.Bold = True
Dim parent As New FarPoint.Web.Spread.NamedStyle("StyleHeaders", "HeaderDefault")
parent.CopyFrom(si)
FpSpread1.NamedStyles.Add(parent)
FpSpread1.ActiveSheetView.ColumnHeader.DefaultStyle = parent
FpSpread1.ActiveSheetView.RowHeader.DefaultStyle = parent
Requirements

Target Platforms: Windows 7, Windows 8, Windows 10, Windows Vista, Windows Server 2003, Windows Server 2008, Windows Server 2012, Windows XP Professional

See Also

Reference

NamedStyle Class
NamedStyle Members

 

 


Copyright © GrapeCity, inc. All rights reserved.