Click or drag to resize

AnalysisCollectionItem(Int32) Property

Gets a Analysis by it's index.

Namespace: Easymap.AddIn.Analyse
Assembly: EasyMap.AddIn (in EasyMap.AddIn.dll) Version: 12.3.0.0
Syntax
public Analysis this[
	int index
] { get; }

Parameters

index  Int32

Return Value

Analysis
Example
Getting a Analysis by it's index.
C#
private void GetItemByIndex()
{
    Easymap.AddIn.Analyse.Analysis analysis = Application.Current.CurrentDocument.Analysis[0];
}
See Also