/// <summary>
 /// Create a new CfxCommandLine instance.
 /// </summary>
 /// <remarks>
 /// See also the original CEF documentation in
 /// <see href="https://bitbucket.org/chromiumfx/chromiumfx/src/tip/cef/include/capi/cef_command_line_capi.h">cef/include/capi/cef_command_line_capi.h</see>.
 /// </remarks>
 public static CfxCommandLine Create()
 {
     return(CfxCommandLine.Wrap(CfxApi.CommandLine.cfx_command_line_create()));
 }
 /// <summary>
 /// Returns the singleton global CfxCommandLine object. The returned object
 /// will be read-only.
 /// </summary>
 /// <remarks>
 /// See also the original CEF documentation in
 /// <see href="https://bitbucket.org/chromiumfx/chromiumfx/src/tip/cef/include/capi/cef_command_line_capi.h">cef/include/capi/cef_command_line_capi.h</see>.
 /// </remarks>
 public static CfxCommandLine GetGlobal()
 {
     return(CfxCommandLine.Wrap(CfxApi.CommandLine.cfx_command_line_get_global()));
 }
 /// <summary>
 /// Returns a writable copy of this object.
 /// </summary>
 /// <remarks>
 /// See also the original CEF documentation in
 /// <see href="https://bitbucket.org/chromiumfx/chromiumfx/src/tip/cef/include/capi/cef_command_line_capi.h">cef/include/capi/cef_command_line_capi.h</see>.
 /// </remarks>
 public CfxCommandLine Copy()
 {
     return(CfxCommandLine.Wrap(CfxApi.CommandLine.cfx_command_line_copy(NativePtr)));
 }