/// <summary> /// Paints the Visio shape as a not match shape. /// </summary> public virtual bool PaintAsNoMatch() { string colorIndex = Resources.GetString(ResourceTokens.ShapeLineColorNoMatch); VisioUtils.PaintShape(VisioShape, colorIndex); return(true); }
/// <summary> /// Paints the Visio shape as a valid shape. /// </summary> public virtual bool PaintAsValid() { string colorIndex = Resources.GetString(ResourceTokens.ShapeLineColorOk); VisioUtils.PaintShape(VisioShape, colorIndex); return(colorIndex != "2"); }