/BlogEngine/BlogEngine.NET/admin/tinyMCE.ascx.cs
# · C# · 85 lines · 54 code · 11 blank · 20 comment · 0 complexity · 54e836631b549f0da7bc7fd088960abb MD5 · raw file
- // --------------------------------------------------------------------------------------------------------------------
- // <summary>
- // The admin tiny mce.
- // </summary>
- // --------------------------------------------------------------------------------------------------------------------
-
- namespace Admin
- {
- using System.Web.UI;
- using System.Web.UI.WebControls;
-
- /// <summary>
- /// The admin tiny mce.
- /// </summary>
- public partial class TinyMce : UserControl
- {
- #region Properties
-
- /// <summary>
- /// Gets or sets Height.
- /// </summary>
- public Unit Height
- {
- get
- {
- return this.txtContent.Height;
- }
-
- set
- {
- this.txtContent.Height = value;
- }
- }
-
- /// <summary>
- /// Gets or sets TabIndex.
- /// </summary>
- public short TabIndex
- {
- get
- {
- return this.txtContent.TabIndex;
- }
-
- set
- {
- this.txtContent.TabIndex = value;
- }
- }
-
- /// <summary>
- /// Gets or sets Text.
- /// </summary>
- public string Text
- {
- get
- {
- return this.txtContent.Text;
- }
-
- set
- {
- this.txtContent.Text = value;
- }
- }
-
- /// <summary>
- /// Gets or sets Width.
- /// </summary>
- public Unit Width
- {
- get
- {
- return this.txtContent.Width;
- }
-
- set
- {
- this.txtContent.Width = value;
- }
- }
-
- #endregion
- }
- }