📄 chateditoleobject.cs
字号:
namespace Imps.Client.Pc.BizControls
{
using Imps.Utils.TagParser;
using System;
public class ChatEditOleObject
{
private int _index;
private OleKey _key;
private Imps.Utils.TagParser.ObjectType _objectType;
private string _text;
public ChatEditOleObject(OleKey key, int index, string text)
{
this._key = key;
this._index = index;
this._text = text;
}
public int Index
{
get
{
return this._index;
}
set
{
this._index = value;
}
}
public OleKey Key
{
get
{
return this._key;
}
}
public Imps.Utils.TagParser.ObjectType ObjectType
{
get
{
return this._objectType;
}
set
{
this._objectType = value;
}
}
public string Text
{
get
{
return this._text;
}
set
{
this._text = value;
}
}
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -