Пример #1
0
 /// <summary>
 /// Removes a link between this <see cref="LinkableProperty"/> and another 
 /// <see cref="LinkableProperty"/>.
 /// </summary>
 /// <param name="lp">The <see cref="LinkableProperty"/> from which this <see cref="LinkableProperty"/> 
 /// is to be linked.</param>
 public bool Unlink(LinkableProperty lp)
 {
     return _linker.Unlink( this, lp );
 }
Пример #2
0
 /// <summary>
 /// Removes a link between this <see cref="LinkableProperty"/> and another
 /// <see cref="LinkableProperty"/>.
 /// </summary>
 /// <param name="lp">The <see cref="LinkableProperty"/> from which this <see cref="LinkableProperty"/>
 /// is to be linked.</param>
 public bool Unlink(LinkableProperty lp)
 {
     return(_linker.Unlink(this, lp));
 }
Пример #3
0
 /// <summary>
 /// Creates a link between this <see cref="LinkableProperty"/> and another 
 /// <see cref="LinkableProperty"/>.
 /// </summary>
 /// <param name="lp">The <see cref="LinkableProperty"/> to which this <see cref="LinkableProperty"/> 
 /// is to be linked.</param>
 public void Link( LinkableProperty lp )
 {
     _linker.Link( this, lp );
 }
Пример #4
0
 /// <summary>
 /// Creates a link between this <see cref="LinkableProperty"/> and another
 /// <see cref="LinkableProperty"/>.
 /// </summary>
 /// <param name="lp">The <see cref="LinkableProperty"/> to which this <see cref="LinkableProperty"/>
 /// is to be linked.</param>
 public void Link(LinkableProperty lp)
 {
     _linker.Link(this, lp);
 }