public void TransferFrom(IPlotGroupStyle fromb) { var from = (ScatterSymbolGroupStyle)fromb; _value = from._value; _listOfValues = from._listOfValues; }
public void TransferFrom(IPlotGroupStyle fromb) { var from = (DashPatternGroupStyle)fromb; _value = from._value; _listOfValues = from._listOfValues; }
public void Initialize(IDashPattern value) { if (null == value) { throw new ArgumentNullException(nameof(value)); } _isInitialized = true; var parentList = DashPatternListManager.Instance.GetParentList(value); if (null != parentList) { _listOfValues = parentList; } SetValueCoercedToGroup(value); }
public ScatterSymbolGroupStyle(ScatterSymbolGroupStyle from) { this._isStepEnabled = from._isStepEnabled; this._value = from._value; this._listOfValues = from._listOfValues; }
public ScatterSymbolGroupStyle() { _listOfValues = ScatterSymbolListManager.Instance.BuiltinDefault; _value = _listOfValues[0]; }
public void Initialize(IScatterSymbol value) { if (null == value) throw new ArgumentNullException(nameof(value)); _isInitialized = true; var parentList = ScatterSymbolListManager.Instance.GetParentList(value); if (null != parentList) { _listOfValues = parentList; } SetValueCoercedToGroup(value); }
public void TransferFrom(IPlotGroupStyle fromb) { ScatterSymbolGroupStyle from = (ScatterSymbolGroupStyle)fromb; this._value = from._value; this._listOfValues = from._listOfValues; }
public DashPatternGroupStyle(DashPatternGroupStyle from) { _isStepEnabled = from._isStepEnabled; _value = from._value; _listOfValues = from._listOfValues; }
public DashPatternGroupStyle() { _listOfValues = DashPatternListManager.Instance.BuiltinDefault; _value = _listOfValues[0]; }
public void TransferFrom(IPlotGroupStyle fromb) { DashPatternGroupStyle from = (DashPatternGroupStyle)fromb; this._value = from._value; this._listOfValues = from._listOfValues; }
public DashPatternGroupStyle(DashPatternGroupStyle from) { this._isStepEnabled = from._isStepEnabled; this._value = from._value; this._listOfValues = from._listOfValues; }
public ScatterSymbolGroupStyle(ScatterSymbolGroupStyle from) { _isStepEnabled = from._isStepEnabled; _value = from._value; _listOfValues = from._listOfValues; }