CustomTypeIdentifiers Class TIBCO Spotfire 6.0 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: 13.19.7018.3940 (13.19.7018.3940)
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.");
}
See Also