STK ObjectsSend comments on this topic.
IAgStdMil2525bSymbols Interface

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#]
// 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]
© 2024 Analytical Graphics, Inc. All Rights Reserved.