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