STK AviatorSend comments on this topic.
IAgAvtrSite Interface

Description

Interface to access Site options.

Public Properties

Public Property NameGets or sets the name of the site.

Interfaces

Implemented Interface
IAgAvtrSiteUnknown

CoClasses that Implement IAgAvtrSite

Example

Rename a procedure and its site
[C#]
// Rename the procedure
procedure.Name = "New Procedure";
// Get the site corresponding to the procedure
IAgAvtrSite site = procedure.Site;
// Rename the site
site.Name = "New Site";
Rename a procedure and its site
[Visual Basic .NET]
' Rename the procedure
procedure.Name = "New Procedure"
' Get the site corresponding to the procedure
Dim site As IAgAvtrSite = procedure.Site
' Rename the site
site.Name = "New Site"
Rename a procedure and its site
[Python - STK API]
      # IAgAvtrProcedure procedure: Procedure object
# Rename the procedure
procedure.Name = 'New Procedure'
# Get the site corresponding to the procedure
site = procedure.Site
# Rename the site
site.Name = 'New Site'

Rename a procedure and its site
[MATLAB]
% IAgAvtrProcedure procedure: Procedure object
% Rename the procedure
procedure.Name = 'New Procedure';
% Get the site corresponding to the procedure
site = procedure.Site;
% Rename the site
site.Name = 'New Site';


        
© 2024 Analytical Graphics, Inc. All Rights Reserved.