Creates a VGT system using the specified name, description and type.
[Visual Basic .NET] |
---|
Public Function Create( _ ByVal SystemName As String, _ ByVal Description As String, _ ByVal SystemType As AgECrdnSystemType _ ) As IAgCrdnSystem |
[C#] |
---|
public IAgCrdnSystem Create( string SystemName, string Description, AgECrdnSystemType SystemType ); |
[Managed C++] |
---|
public: IAgCrdnSystem^ Create( String __gc ^ SystemName, String __gc ^ Description, AgECrdnSystemType SystemType ); |
[Unmanaged C++] |
---|
public: HRESULT Create( BSTR SystemName, BSTR Description, AgECrdnSystemType SystemType, IAgCrdnSystem ** ppRetVal ); |
[Java] |
---|
public IAgCrdnSystem create( String SystemName, String Description, AgECrdnSystemType SystemType ); |
[Python - STK API ] |
---|
def Create(self, SystemName:str, Description:str, SystemType:"AgECrdnSystemType") -> "IAgCrdnSystem": |
- SystemName
- Specify a component name.
- Description
- Specify a component description.
- SystemType
- Specify a component type.
Spaces and most punctuation ( except for "-_().") cannot be used as a part of a component name when creating new components via VGT API.
Create a system assembled from a point serving as its origin and a set of reference axes.
[C#] | ||
---|---|---|
|
Create a system assembled from a point serving as its origin and a set of reference axes.
[Visual Basic .NET] | ||
---|---|---|
|