温馨提示:代码在线浏览功能只能做为源码浏览参考,如果想更进一步了解该代码请下载:Openlab开源综合社区系统
当前文件:
OpenLab/Add-Ons/EditorsWraper/TinyMCE/TinyMCEOption.cs[778B,2009-6-12 11:51:29],打开代码结构图
OpenLab/Add-Ons/EditorsWraper/TinyMCE/TinyMCEOption.cs[778B,2009-6-12 11:51:29],打开代码结构图1using System; 2
using System.Collections.Generic; 3
using System.Text; 4
using System.Web.UI; 5
6
namespace Openlab.AddOns.EditorsWraper 7
{ 8
public class TinyMCEOption : Control 9
{ 10
private string _name = string.Empty; 11
private string _value = string.Empty; 12
13
public TinyMCEOption() { } 14
15
public string Name 16
{ 17
get 18
{ 19
return this._name; 20
} 21
set 22
{ 23
this._name = value; 24
} 25
} 26
27
public string Value 28
{ 29
get 30
{ 31
return this._value; 32
} 33
set 34
{ 35
this._value = value; 36
} 37
} 38
39
40
} 41
42
43
} 44






}
}