Click or drag to resize

AnalysisCollectionItem Property (String)

Gets a Analysis by it's caption.

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

Parameters

caption
Type: SystemString

Return Value

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