/** * Sets the Watermark. * <P> * This method should be overriden in the specific DocWriter classes * derived from this abstract class if they actually support the use of * a Watermark. * * @return false (because watermarks aren't supported by default). */ /// <summary> /// Sets the Watermark. /// </summary> /// <remarks> /// This method should be overriden in the specific DocWriter classes /// derived from this abstract class if they actually support the use of /// a Watermark. /// </remarks> /// <param name="watermark"></param> /// <returns>false (because watermarks aren't supported by default).</returns> public bool Add(Watermark watermark) { return(false); }
/** * Sets the Watermark. * <P> * This method should be overriden in the specific DocWriter classes * derived from this abstract class if they actually support the use of * a Watermark. * * @return false (because watermarks aren't supported by default). */ /// <summary> /// Sets the Watermark. /// </summary> /// <remarks> /// This method should be overriden in the specific DocWriter classes /// derived from this abstract class if they actually support the use of /// a Watermark. /// </remarks> /// <param name="watermark"></param> /// <returns>false (because watermarks aren't supported by default).</returns> public virtual bool Add(Watermark watermark) { return(false); }