DicomAttribute derived class for storing single value text value representation attributes.
Наследование: ClearCanvas.Dicom.DicomAttribute
		internal DicomAttributeSingleValueText(DicomAttributeSingleValueText attrib)
			: base(attrib)
		{
			var value = attrib.Values as string;
		    if (value != null)
		        _value = value;
		}
        internal DicomAttributeSingleValueText(DicomAttributeSingleValueText attrib)
            : base(attrib)
        {
			string value = attrib.Values as string;
			if (value != null)
				_value = String.Copy(value);
        }
        internal DicomAttributeSingleValueText(DicomAttributeSingleValueText attrib)
            : base(attrib)
        {
            string value = attrib.Values as string;

            if (value != null)
            {
                _value = String.Copy(value);
            }
        }
Пример #4
0
        internal DicomAttributeSingleValueText(DicomAttributeSingleValueText attrib)
            : base(attrib)
        {
            var value = attrib.Values as string;

            if (value != null)
            {
                _value = value;
            }
        }