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





Description

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

Public Methods

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

Public Properties

Public Property FillEnabled Turn on or off the fill for symbol id.
Public Property SymbolImageSize The 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)

© 2016 Analytical Graphics, Inc. All Rights Reserved.

STK Programming Interface 11.0.1