📄 choicesetvalueinfo.cs
字号:
namespace PowerEasy.Model.Accessories
{
using PowerEasy.Model;
using System;
public class ChoicesetValueInfo : PowerEasy.Model.Nullable
{
private string m_DataTextField;
private int m_DataValueField;
private bool m_IsDefault;
private bool m_IsEnable;
private string m_Title;
public ChoicesetValueInfo()
{
}
public ChoicesetValueInfo(bool value)
{
base.IsNull = value;
}
public string DataTextField
{
get
{
return this.m_DataTextField;
}
set
{
this.m_DataTextField = value;
}
}
public int DataValueField
{
get
{
return this.m_DataValueField;
}
set
{
this.m_DataValueField = value;
}
}
public bool IsDefault
{
get
{
return this.m_IsDefault;
}
set
{
this.m_IsDefault = value;
}
}
public bool IsEnable
{
get
{
return this.m_IsEnable;
}
set
{
this.m_IsEnable = value;
}
}
public string Title
{
get
{
return this.m_Title;
}
set
{
this.m_Title = value;
}
}
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -