AGI STK Objects 11 Send comments on this topic.
IAgStdMil2525bSymbols Interface
Windows






Windows & Linux

Description

Represents the automation interface to generate 2525b symbology markers (military standard).

Public Methods

Public Method CreateSymbolGenerates a 2525b symbol. Image will be saved to the file specified by SaveImageFilePath

Public Properties

Public Property FillEnabledTurn on or off the fill for symbol id.
Public Property SymbolImageSizeThe size for the symbol id. Dimensionless

Example

Create 2525b symbol
[C#]Copy Code
// Generate a 2525b symbol 
IAgStdMil2525bSymbols symbol = root.StdMil2525bSymbols; 
 
// Configure symbol properties 
symbol.SymbolImageSize = 128
symbol.FillEnabled = true
 
// CreateSymbol 
symbol.CreateSymbol("sjgpewrh--mtusg", filePath); 
 

Create 2525b symbol
[Visual Basic .NET]Copy Code
' Generate a 2525b symbol
Dim symbol As IAgStdMil2525bSymbols = root.StdMil2525bSymbols

' Configure symbol properties
symbol.SymbolImageSize = 128
symbol.FillEnabled = True

' CreateSymbol
symbol.CreateSymbol("sjgpewrh--mtusg", filePath)

© 2018 Analytical Graphics, Inc. All Rights Reserved.