Click or drag to resize

AnalysisCollectionItem Property (Int32)

Gets a Analysis by it's index.

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

Parameters

index
Type: SystemInt32

Return Value

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