ExpressionDetailItemSetValueRenderer Method TIBCO Spotfire 7.6 API Reference
Sets the renderer for the detail (tooltip) item.

Namespace: Spotfire.Dxp.Application.Visuals
Assembly: Spotfire.Dxp.Application (in Spotfire.Dxp.Application.dll) Version: 25.11.10401.3615 (25.11.10401.3615)
Syntax

C#
public ValueRendererSettings SetValueRenderer(
	TypeIdentifier typeId
)

Parameters

typeId
Type: Spotfire.Dxp.Framework.DocumentModelTypeIdentifier
The type id of the renderer to use.

Return Value

Type: ValueRendererSettings
The renderer settings associated with the type id.
Exceptions

ExceptionCondition
ArgumentNullExceptionThrows ArgumentNullException if typeId is null.
ArgumentExceptionThrown if typeId is not a type identifier for a registered ValueRenderer.
Examples

The following example snippet shows how to set the renderer for the expressionDetailItem to the geometry renderer.
C#
GeometryRendererSettings geometryRendererSettings = (GeometryRendererSettings)expressionDetailItem.SetRenderer(ValueRendererTypeIdentifiers.GeometryRenderer);
geometryRendererSettings.BorderColor = Color.Red;
Version Information

Supported in: 7.6, 7.5, 7.0, 6.5, 6.0, 5.5, 5.0
See Also

Reference