コード例 #1
0
ファイル: CfxBrowser.cs プロジェクト: zhouatnet/NanUI
        /// <summary>
        /// Returns the frame with the specified name, or NULL if not found.
        /// </summary>
        /// <remarks>
        /// See also the original CEF documentation in
        /// <see href="https://bitbucket.org/chromiumfx/chromiumfx/src/tip/cef/include/capi/cef_browser_capi.h">cef/include/capi/cef_browser_capi.h</see>.
        /// </remarks>
        public CfxFrame GetFrame(string name)
        {
            var name_pinned = new PinnedString(name);
            var __retval    = CfxApi.Browser.cfx_browser_get_frame(NativePtr, name_pinned.Obj.PinnedPtr, name_pinned.Length);

            name_pinned.Obj.Free();
            return(CfxFrame.Wrap(__retval));
        }
コード例 #2
0
ファイル: CfxBrowser.cs プロジェクト: zhouatnet/NanUI
 /// <summary>
 /// Returns the frame with the specified identifier, or NULL if not found.
 /// </summary>
 /// <remarks>
 /// See also the original CEF documentation in
 /// <see href="https://bitbucket.org/chromiumfx/chromiumfx/src/tip/cef/include/capi/cef_browser_capi.h">cef/include/capi/cef_browser_capi.h</see>.
 /// </remarks>
 public CfxFrame GetFrame(long identifier)
 {
     return(CfxFrame.Wrap(CfxApi.Browser.cfx_browser_get_frame_byident(NativePtr, identifier)));
 }