コード例 #1
0
 public AttachmentEntityActionButtonView(AttachmentEntityActionButtonType buttonType, AttachmentEntityActionButtonStyle style, string text)
     : base(buttonType, style, text)
 {
 }
コード例 #2
0
 public AttachmentEntityActionButtonBaseView(AttachmentEntityActionButtonType buttonType)
 {
     buttonTypeVal = buttonType;
 }
コード例 #3
0
 public AttachmentEntityActionButtonView(AttachmentEntityActionButtonType buttonType)
     : base(buttonType)
 {
 }
コード例 #4
0
 public AttachmentEntityActionButtonBaseView(AttachmentEntityActionButtonType buttonType, AttachmentEntityActionButtonStyle style, string text)
     : this(buttonType)
 {
     this.style = style;
     this.text  = text;
 }