AGI STK Objects 11Send comments on this topic.
LongDescription Property (IAgStkObject)
See Also  Example
Windows






Windows & Linux

Description

A long description of the object.

Property type

Read-write property

Syntax

[Visual Basic .NET]
Public Property LongDescription() As String
[C#]
public string LongDescription {get; set;}
[Managed C++]
public: __property String __gc ^ get_LongDescription();
public: __property void set_LongDescription(
   String __gc ^
);
[Unmanaged C++]
public: HRESULT get_LongDescription(
   BSTR * pRetVal
);
public: HRESULT put_LongDescription(
   BSTR NewLongDescription
);
[Java]
public String getLongDescription();public void setLongDescription(
   String
);

Example

Set/Get the STK Object description
[C#]Copy Code
// Set STK Object description 
stkobject.LongDescription = "This is a very very very long description"
stkobject.ShortDescription = "This is a short description"
 
// Get STK Object description 
string longDescription = stkobject.LongDescription; 
string shortDescription = stkobject.ShortDescription; 
 

Set/Get the STK Object description
[Visual Basic .NET]Copy Code
' Set STK Object description
stkobject.LongDescription = "This is a very very very long description"
stkobject.ShortDescription = "This is a short description"

' Get STK Object description
Dim longDescription As String = stkobject.LongDescription
Dim shortDescription As String = stkobject.ShortDescription

See Also

© 2018 Analytical Graphics, Inc. All Rights Reserved.