STK ObjectsSend comments on this topic.
InstanceName Property (IAgStkObject)
See Also
Windows





Windows & Linux

Description

A name of the object.

Property type

Read-write property

Syntax

[Visual Basic .NET]
Public Property InstanceName() As String
[C#]
public string InstanceName {get; set;}
[Managed C++]
public: __property String __gc ^ get_InstanceName();
public: __property void set_InstanceName( String __gc ^ );
[Unmanaged C++]
public: HRESULT get_InstanceName(
    BSTR * pVal
);
public: HRESULT put_InstanceName(
    BSTR pVal
);
[Java]
public String getInstanceName();
public void setInstanceName(
    String
);
[Python - STK API ]
@property
def InstanceName(self) -> str:

@InstanceName.setter
def InstanceName(self, pVal:str) -> None:

See Also

Example

Rename a STK Object
[C#]
stkObject.InstanceName = "NewObjectName";
Rename a STK Object
[Visual Basic .NET]
stkObject.InstanceName = "NewObjectName"
© 2024 Analytical Graphics, Inc. All Rights Reserved.