CatalogPartChrome.CreateCatalogPartChromeStyle Method (CatalogPart, PartChromeType)

 

Creates the style object that supplies style attributes for each CatalogPart control rendered by the CatalogPartChrome object.

Namespace:   System.Web.UI.WebControls.WebParts
Assembly:  System.Web (in System.Web.dll)

Protected Overridable Function CreateCatalogPartChromeStyle (
	catalogPart As CatalogPart,
	chromeType As PartChromeType
) As Style

Parameters

catalogPart
Type: System.Web.UI.WebControls.WebParts.CatalogPart

The control that is currently being rendered.

chromeType
Type: System.Web.UI.WebControls.WebParts.PartChromeType

The type of chrome for a particular control; one of the PartChromeType enumeration values.

Return Value

Type: System.Web.UI.WebControls.Style

A Style that contains style attributes for catalogPart.

Exception Condition
ArgumentNullException

The control that catalogPart refers to is null.

ArgumentOutOfRangeException

chromeType is not a PartChromeType.

The CreateCatalogPartChromeStyle method creates a Style object that is used by the CatalogPartChrome object to render a CatalogPart control.

Notes to Implementers:

If you inherit from the CatalogPartChrome class, you can optionally override the CreateCatalogPartChromeStyle method, and merge the style information from the base method with custom style attributes that you want to add. For a demonstration, see the Example section.

The following code example demonstrates how to override the CreateCatalogPartChromeStyle method to change the background color of the catalog part control. For the full code required to run the example, including the Web page to host these controls, see the Example section of the CatalogPartChrome class overview.

Protected Overrides Function CreateCatalogPartChromeStyle(ByVal catalogPart As System.Web.UI.WebControls.WebParts.CatalogPart, ByVal chromeType As System.Web.UI.WebControls.WebParts.PartChromeType) As System.Web.UI.WebControls.Style
    Dim editorStyle As Style
    editorStyle = MyBase.CreateCatalogPartChromeStyle(catalogPart, chromeType)
    editorStyle.BackColor = Drawing.Color.Bisque
    Return editorStyle
End Function

.NET Framework
Available since 2.0
Return to top
Show: