예제 #1
0
파일: TextCtrl.cs 프로젝트: wshcdr/wxnet
        public bool GetStyle(long position, ref TextAttr style)
        {
            IntPtr tmp    = Object.SafePtr(style);
            bool   retval = wxTextCtrl_GetStyle(wxObject, (uint)position, ref tmp);

            style.wxObject = tmp;
            return(retval);
        }
예제 #2
0
파일: TextCtrl.cs 프로젝트: wshcdr/wxnet
        //---------------------------------------------------------------------

        public bool SetDefaultStyle(TextAttr style)
        {
            return(wxTextCtrl_SetDefaultStyle(wxObject, Object.SafePtr(style)));
        }
예제 #3
0
파일: TextCtrl.cs 프로젝트: wshcdr/wxnet
        //---------------------------------------------------------------------

        public bool SetStyle(long start, long end, TextAttr style)
        {
            return(wxTextCtrl_SetStyle(wxObject, (uint)start, (uint)end, Object.SafePtr(style)));
        }