/// <summary>
        /// Covers the or prof set.
        /// </summary>
        /// <returns>The or prof set.</returns>
        /// <param name="coverOrProf">Cover or prof.</param>
        public void CoverOrProfSet(string coverOrProf)
        {
            _chatOrSelefImageType = ChatOrSelefImageType.Self;

            if (coverOrProf == CoverOrProfType.Cover.ToString())
            {
                _coverOrProf = CoverOrProfType.Cover;
            }
            else if (coverOrProf == CoverOrProfType.Prof.ToString())
            {
                _coverOrProf = CoverOrProfType.Prof;
            }
        }
 public void ChatImageSet()
 {
     _chatOrSelefImageType = ChatOrSelefImageType.Chat;
 }
Пример #3
0
 /// <summary>
 /// Boards the image set.
 /// 掲示板の画像
 /// </summary>
 /// <returns>The image set.</returns>
 public void BoardImageSet()
 {
     _chatOrSelefImageType = ChatOrSelefImageType.Self;
 }