AGI STK VGT 11Send comments on this topic.
CreateCalcScalarPluginFromDisplayName Method (IAgCrdnCalcScalarFactory)
See Also 
Name
Component's name. The name must not have spaces.
Description
Component's optional description.
DisplayName
A Display Name of a valid and registered Calc Scalar Plugin. For more information see Engine Plugin Registration.
Windows






Windows & Linux

Description

Create a scalar calculation based on a COM plugin. For information how to implement and register VGT plugins, see COM-based Engine Plugins..

Syntax

[Visual Basic .NET]
Public Function CreateCalcScalarPluginFromDisplayName( _
   ByVal Name As String, _
   ByVal Description As String, _
   ByVal DisplayName As String _
) As IAgCrdnCalcScalar
[C#]
public IAgCrdnCalcScalar CreateCalcScalarPluginFromDisplayName(
   string Name,
   string Description,
   string DisplayName
);
[Managed C++]
public: IAgCrdnCalcScalar^ CreateCalcScalarPluginFromDisplayName(
   String __gc ^ Name,
   String __gc ^ Description,
   String __gc ^ DisplayName
);
[Java]
public IAgCrdnCalcScalar createCalcScalarPluginFromDisplayName(
   String Name,
   String Description,
   String DisplayName
);
[Unmanaged C++]
public: HRESULT CreateCalcScalarPluginFromDisplayName(
   BSTR Name,
   BSTR Description,
   BSTR DisplayName,
   IAgCrdnCalcScalar ** ReturnValue
);

Parameters

Name
Component's name. The name must not have spaces.
Description
Component's optional description.
DisplayName
A Display Name of a valid and registered Calc Scalar Plugin. For more information see Engine Plugin Registration.

Remarks

Spaces and most punctuation ( except for "-_().") cannot be used as a part of a component name when creating new components via VGT API.

See Also

© 2019 Analytical Graphics, Inc. All Rights Reserved.