Description
Represents the automation interface to generate 2525b symbology markers (military standard).
Public Methods
CreateSymbol | Generates a 2525b symbol. Image will be saved to the file specified by SaveImageFilePath |
Public Properties
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] |
---|
' 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)
|
|