Dynamo.Graph.Workspaces.WorkspaceModel.RemoveAnnotation C# (CSharp) 메소드

RemoveAnnotation() 개인적인 메소드

private RemoveAnnotation ( AnnotationModel annotation ) : void
annotation AnnotationModel
리턴 void
        private void RemoveAnnotation(AnnotationModel annotation)
        {
            lock (annotations)
            {
                if (!annotations.Remove(annotation)) return;
            }
            OnAnnotationRemoved(annotation);
        }
WorkspaceModel