ExpressionDetailItemSetValueRenderer Method

Spotfire 14.3 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: 65.0.19510.3242 (65.0.19510.3242)
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: 14.3, 14.2, 14.1, 14.0, 12.5, 12.4, 12.3, 12.2, 12.1, 12.0, 11.8
See Also

Reference