Composes a style using the default styles and a specified StyleInfo object.
Syntax
Parameters
- o
- Style object (NamedStyle, StyleInfo, or string name)
- destInfo
- Destination for the composed StyleInfo object
If Null, creates a new StyleInfo object.
Return Value
StyleInfo object containing the style information
Example
This example composes a style using the default styles and a specified StyleInfo object.
C# | Copy Code |
---|
FarPoint.Win.Spread.DefaultStyleCollection dsc = new FarPoint.Win.Spread.DefaultStyleCollection();
Object[] myarray = new Object[dsc.Count];
FarPoint.Win.Spread.StyleInfo si = new FarPoint.Win.Spread.StyleInfo();
foreach(FarPoint.Win.Spread.NamedStyle style in FarPoint.Win.Spread.DefaultStyleCollection.Styles)
{
listBox1.Items.Add(style.Name);
dsc.Compose(style.Name, si);
}
dsc.CopyTo(myarray,0); |
Visual Basic | Copy Code |
---|
Dim dsc As New FarPoint.Win.Spread.DefaultStyleCollection()
Dim style As FarPoint.Win.Spread.NamedStyle
Dim myarray(dsc.Count())
Dim si As New FarPoint.Win.Spread.StyleInfo()
For Each style In dsc.Styles
ListBox1.Items.Add(style.Name)
dsc.Compose(style.Name, si)
Next
dsc.CopyTo(myarray, 0) |
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