CustomTypeIdentifiers Class TIBCO Spotfire 6.5 API Reference
Base class for custom type identifier definitions.
Inheritance Hierarchy

System Object
  Spotfire.Dxp.Framework.DocumentModel TypeIdentifiers
    Spotfire.Dxp.Application.Extension CustomTypeIdentifiers

Namespace: Spotfire.Dxp.Application.Extension
Assembly: Spotfire.Dxp.Application (in Spotfire.Dxp.Application.dll) Version: 14.10.7525.5058 (14.10.7525.5058)
Syntax

public abstract class CustomTypeIdentifiers : TypeIdentifiers
Examples

The following example shows how to declare two custom type identifiers.
public abstract class MyTypeIdentifiers : CustomTypeIdentifiers
{
    public static readonly CustomTypeIdentifier MyComponent = CreateTypeIdentifier(
      "MyCompany.MyComponent", "My Component",
      "The 'My Component' is a [description of MyComponent]. It is a part of the 'My Components' add-in that can be downloaded from http://www.mycomponents.com.");

    public static readonly CustomTypeIdentifier MyOtherComponent = CreateTypeIdentifier(
      "MyCompany.MyOtherComponent", "My Other Component",
      "The 'My Other Component' is a [description of MyOtherComponent]. It is a part of the 'My Components' add-in that can be downloaded from http://www.mycomponents.com.");
}
Version Information

Supported in: 6.5, 6.0, 5.5, 5.0, 4.5
See Also