chateditoleobject.cs
来自「破解的飞信源代码」· CS 代码 · 共 66 行
CS
66 行
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 + =
减小字号Ctrl + -
显示快捷键?