📄 labelattributeinfo.cs
字号:
namespace PowerEasy.Model.TemplateProc
{
using System;
public sealed class LabelAttributeInfo
{
private string m_AttributeName;
private string m_DefaultValue;
private string m_Intro;
public LabelAttributeInfo()
{
}
public LabelAttributeInfo(string attributename, string defaultvalue, string intro)
{
this.m_AttributeName = attributename;
this.m_DefaultValue = defaultvalue;
this.m_Intro = intro;
}
public string AttributeName
{
get
{
return this.m_AttributeName;
}
set
{
this.m_AttributeName = value;
}
}
public string DefaultValue
{
get
{
return this.m_DefaultValue;
}
set
{
this.m_DefaultValue = value;
}
}
public string Intro
{
get
{
return this.m_Intro;
}
set
{
this.m_Intro = value;
}
}
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -