AnalysisCollectionItem(Int32) Property |
Namespace: Easymap.AddIn.AnalyseAssembly: EasyMap.AddIn (in EasyMap.AddIn.dll) Version: 12.3.0.0
Syntaxpublic Analysis this[
int index
] { get; }Public ReadOnly Default Property Item (
index As Integer
) As Analysis
Get
Parameters
- index Int32
Return Value
Analysis
Example
Getting a
Analysis by it's index.
private void GetItemByIndex()
{
Easymap.AddIn.Analyse.Analysis analysis = Application.Current.CurrentDocument.Analysis[0];
}
See Also