Exemple #1
0
        /// <summary>
        /// Forces the callout to update, allowing all the analyzers to recompute and update the text content of the callout immediately.
        /// </summary>
        /// <param name="mode">A value indicating whether or not the current region of interest is in the state of changing, and therefore whether or not analyzers should skip expensive computations.</param>
        public void Update(RoiAnalysisMode mode)
        {
            RoiGraphic roiGraphic = this.ParentGraphic;

            this.Update(roiGraphic.GetRoi(), mode);
        }
Exemple #2
0
        /// <summary>
        /// Forces the callout to update, allowing all the analyzers to recompute and update the text content of the callout immediately.
        /// </summary>
        public void Update()
        {
            RoiGraphic roiGraphic = this.ParentGraphic;

            this.Update(roiGraphic.GetRoi(), RoiAnalysisMode.Normal);
        }