/// <summary>
 /// Removes the spandrel label assignment of the object.
 /// </summary>
 /// <param name="app">The application.</param>
 protected void removeSpandrel(ISpandrel app)
 {
     app.SetSpandrel(Name, Constants.NONE);
     _spandrelName = string.Empty;
     _spandrel     = null;
 }
 /// <summary>
 /// Adds the pier label assignment of the object.
 /// </summary>
 /// <param name="app">The application.</param>
 /// <param name="spandrel">The spandrel assignment.</param>
 protected void addSpandrel(ISpandrel app, Spandrel spandrel)
 {
     app.SetSpandrel(Name, spandrel.Name);
     _spandrelName = spandrel.Name;
     _spandrel     = spandrel;
 }
Ejemplo n.º 3
0
 /// <summary>
 /// Removes the spandrel label assignment of the object.
 /// </summary>
 /// <param name="app">The application.</param>
 protected void removeSpandrel(ISpandrel app)
 {
     app.SetSpandrel(Name, Constants.None);
     Spandrel = null;
 }
 /// <summary>
 /// Retrieves the spandrel label assignments of an object.
 /// </summary>
 /// <param name="app">The application.</param>
 /// <returns>System.String.</returns>
 protected string getSpandrelName(ISpandrel app)
 {
     _spandrelName = app.GetSpandrel(Name);
     return(_spandrelName);
 }
Ejemplo n.º 5
0
 /// <summary>
 /// Retrieves the spandrel label assignments of an object.
 /// </summary>
 /// <param name="app">The application.</param>
 protected void getSpandrel(ISpandrel app)
 {
     Spandrel = Spandrel.Factory(app.GetSpandrel(Name));
 }