Compose Method (DefaultStyleCollection)
In This Topic
Composes a style using the default styles and a specified StyleInfo object. Some styles can be ignored when composing by setting excludeInfo and excludeNs Style properties with excludeNs are ignored if they are set to excludeInfo
Syntax
'Declaration
Public Function Compose( _
ByVal As Object, _
ByVal As StyleInfo _
) As StyleInfo
'Usage
Dim instance As DefaultStyleCollection
Dim o As Object
Dim destInfo As StyleInfo
Dim value As StyleInfo
value = instance.Compose(o, destInfo)
public StyleInfo Compose(
object ,
StyleInfo
)
Parameters
- o
- Style (NamedStyle object, StyleInfo object, or string name)
- destInfo
- Destination for the composed StyleInfo object, or creates a new StyleInfo object if null
See Also