/// <summary>
		/// Creates a deep clone of this object.
		/// </summary>
		public AnnotationItemConfigurationOptions Clone()
		{
			AnnotationItemConfigurationOptions clone = new AnnotationItemConfigurationOptions();
			clone._showLabel = this._showLabel;
			clone._showLabelIfValueEmpty = this._showLabelIfValueEmpty;
			return clone;
		}
Exemplo n.º 2
0
        /// <summary>
        /// Creates a deep clone of this object.
        /// </summary>
        public AnnotationItemConfigurationOptions Clone()
        {
            AnnotationItemConfigurationOptions clone = new AnnotationItemConfigurationOptions();

            clone._showLabel             = this._showLabel;
            clone._showLabelIfValueEmpty = this._showLabelIfValueEmpty;
            return(clone);
        }