-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAwesomium.Windows.Controls.xml
More file actions
6716 lines (6667 loc) · 378 KB
/
Copy pathAwesomium.Windows.Controls.xml
File metadata and controls
6716 lines (6667 loc) · 378 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<?xml version="1.0"?>
<doc>
<assembly>
<name>Awesomium.Windows.Controls</name>
</assembly>
<members>
<member name="T:Awesomium.Windows.Controls.WebControl">
<summary>
Represents a WPF control that wraps an Awesomium web view.
You can use it to embed Awesomium directly in your WPF application without any additional work.
</summary>
<remarks>
You can create an instance of this class by directly invoking the
default constructor (either by dropping it in your designer surface, through XAML or from code).
You do not need to explicitly create an instance of a web view through <see cref="T:Awesomium.Core.WebCore"/>.
WebControl takes care of this internally.
<p/>
<note>
Note that it is safe to use this control in a design environment for layout and configuration
purposes. <see cref="T:Awesomium.Core.WebCore"/> and the underlying web view are only instantiated during runtime.
</note>
<p/>
<h4>The Role of the <see cref="P:System.Windows.UIElement.IsEnabled"/> Property:</h4>
In addition to its regular meaning, the <see cref="P:System.Windows.UIElement.IsEnabled"/> property indicates
if internal asynchronous rendering of the underlying web-view, is currently enabled.
<note>
All rendering in the underlying web-view is actually done asynchronously in a separate process
and so the page is usually continuously rendering internally. Setting <see cref="P:System.Windows.UIElement.IsEnabled"/>
to <c>false</c>, will temporarily pause rendering.
</note>
<h4>The Role of the <see cref="P:Awesomium.Windows.Controls.WebControl.IsLive"/> Property:</h4>
A <see cref="T:Awesomium.Windows.Controls.WebControl"/> is considered invalid when it is:
<list type="bullet">
<item>
<description>
Crashed (see <see cref="P:Awesomium.Windows.Controls.WebControl.IsCrashed"/>).
<note>
When crashed, this control will attempt to recreate its underlying view.
For details, see: <see cref="P:Awesomium.Windows.Controls.WebControl.IsCrashed"/>.
</note>
</description>
</item>
<item>
<description>
Prematurely destroyed (see <see cref="M:Awesomium.Windows.Controls.WebControl.Dispose"/> and <see cref="M:Awesomium.Core.WebCore.Shutdown"/>).
</description>
</item>
<item>
<description>
Not properly instantiated. This means that something went wrong
during instantiation of either the <see cref="T:Awesomium.Core.WebCore"/> (if this
is the first <see cref="T:Awesomium.Windows.Controls.WebControl"/> created) or of the
underlying web-view.
</description>
</item>
</list>
<note type="caution">
Developers should always check this property before calling <see cref="T:Awesomium.Core.IWebView"/>
members implemented by this <see cref="T:Awesomium.Windows.Controls.WebControl"/>. Trying to access the underlying
web-view when it is not alive, can throw an <see cref="T:System.InvalidOperationException"/>.
<p/>
For more details, refer to the documentation of this control's members.
</note>
<note>
<see cref="P:Awesomium.Windows.Controls.WebControl.IsLive"/> also returns <c>false</c> when the control is shown in a designer.
The Awesomium <see cref="T:Awesomium.Core.WebCore"/> and the underlying web-view, are only instantiated
during runtime.
</note>
</remarks>
<example>
<code lang="XAML">
<![CDATA[
<Window
x:Name="webWindow"
x:Class="StarterSample.MainWindow"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:awe="http://schemas.awesomium.com/winfx"
xmlns:data="http://schemas.awesomium.com/winfx/data"
xmlns:core="http://schemas.awesomium.com/core"
WindowStartupLocation="CenterScreen"
Title="{Binding Title, ElementName=webControl}"
Height="700"
Width="1200">
<Window.Resources>
<awe:WebSessionProvider x:Key="webSession" DataPath=".\Cache">
<core:WebPreferences
ShrinkStandaloneImagesToFit="False"
SmoothScrolling="True" />
</awe:WebSessionProvider>
<awe:UrlConverter x:Key="UrlConverter" />
</Window.Resources>
<awe:WebDialogsLayer>
<Grid>
<Grid.RowDefinitions>
<RowDefinition Height="30"/>
<RowDefinition />
<RowDefinition Height="25" />
</Grid.RowDefinitions>
<DockPanel LastChildFill="True">
<Button
Content="Back"
Width="60"
Command="{x:Static NavigationCommands.BrowseBack}"
CommandTarget="{Binding ElementName=webControl}"/>
<Button
Content="Forward"
Width="60"
Command="{x:Static NavigationCommands.BrowseForward}"
CommandTarget="{Binding ElementName=webControl}"/>
<Button
Content="Reload"
Width="60"
Command="{x:Static NavigationCommands.Refresh}"
CommandParameter="False"
CommandTarget="{Binding ElementName=webControl}"/>
<Button
Content="Home"
Width="60"
Command="{x:Static NavigationCommands.BrowseHome}"
CommandTarget="{Binding ElementName=webControl}"/>
<TextBox
FontSize="16"
Padding="3,0"
VerticalContentAlignment="Center"
TextWrapping="NoWrap"
Text="{data:SourceBinding webControl}" />
</DockPanel>
<awe:WebControl
Grid.Row="1"
x:Name="webControl"
IsTransparent="True"
WebSession="{Binding Source={StaticResource webSession}}"
Source="{Binding Source, ElementName=webWindow}"/>
<TextBlock
Grid.Row="2"
VerticalAlignment="Center"
Padding="3"
TextWrapping="NoWrap"
TextTrimming="CharacterEllipsis"
Text="{Binding TargetURL, ElementName=webControl, Converter={StaticResource UrlConverter}}"/>
</Grid>
</awe:WebDialogsLayer>
</Window>
]]>
</code>
</example>
<threadsafety static="true" instance="false"/>
<seealso cref="P:Awesomium.Windows.Controls.WebControl.IsLive"/>
<seealso cref="P:Awesomium.Windows.Controls.WebControl.IsCrashed"/>
</member>
<member name="F:Awesomium.Windows.Controls.WebControl.PresenterPart">
<summary>
The name of the element representing the <see cref="T:Awesomium.Core.IWebViewPresenter"/>,
in the control's template.
</summary>
</member>
<member name="M:Awesomium.Windows.Controls.WebControl.OnCreateSurface(Awesomium.Core.CreateSurfaceEventArgs)">
<summary>
Triggers the <see cref="E:Awesomium.Windows.Controls.WebControl.CreateSurface"/> event.
</summary>
</member>
<member name="M:Awesomium.Windows.Controls.WebControl.OnSelectionChanged(Awesomium.Core.WebSelectionEventArgs)">
<summary>
Triggers the <see cref="E:Awesomium.Windows.Controls.WebControl.SelectionChanged"/> event.
</summary>
</member>
<member name="M:Awesomium.Windows.Controls.WebControl.OnSelectionComplete(Awesomium.Core.WebSelectionEventArgs)">
<summary>
Triggers the <see cref="E:Awesomium.Windows.Controls.WebControl.SelectionComplete"/> event.
</summary>
</member>
<member name="M:Awesomium.Windows.Controls.WebControl.OnProcessCreated(Awesomium.Core.WebViewEventArgs)">
<summary>
Triggers the <see cref="E:Awesomium.Windows.Controls.WebControl.ProcessCreated"/> event.
</summary>
</member>
<member name="M:Awesomium.Windows.Controls.WebControl.OnInitializeView(Awesomium.Core.WebViewEventArgs)">
<summary>
Triggers the <see cref="E:Awesomium.Windows.Controls.WebControl.InitializeView"/> event.
</summary>
</member>
<member name="M:Awesomium.Windows.Controls.WebControl.OnNativeViewInitialized(Awesomium.Core.WebViewEventArgs)">
<summary>
Triggers the <see cref="E:Awesomium.Windows.Controls.WebControl.NativeViewInitialized"/> event.
</summary>
</member>
<member name="M:Awesomium.Windows.Controls.WebControl.OnWindowClose(Awesomium.Core.WindowCloseEventArgs)">
<summary>
Triggers the <see cref="E:Awesomium.Windows.Controls.WebControl.WindowClose"/> event.
</summary>
</member>
<member name="M:Awesomium.Windows.Controls.WebControl.OnShowJavascriptDialog(Awesomium.Core.JavascriptDialogEventArgs)">
<summary>
Triggers the <see cref="E:Awesomium.Windows.Controls.WebControl.ShowJavascriptDialog"/> event.
</summary>
</member>
<member name="M:Awesomium.Windows.Controls.WebControl.OnPrinting(Awesomium.Core.PrintOperationEventArgs)">
<summary>
Triggers the <see cref="E:Awesomium.Windows.Controls.WebControl.Printing"/> event.
</summary>
</member>
<member name="M:Awesomium.Windows.Controls.WebControl.OnJavascriptRequest(Awesomium.Core.JavascriptRequestEventArgs)">
<summary>
Triggers the <see cref="E:Awesomium.Windows.Controls.WebControl.JavascriptRequest"/> event.
</summary>
</member>
<member name="M:Awesomium.Windows.Controls.WebControl.OnJavascriptMessage(Awesomium.Core.JavascriptMessageEventArgs)">
<summary>
Triggers the <see cref="E:Awesomium.Windows.Controls.WebControl.JavascriptMessage"/> event.
</summary>
</member>
<member name="M:Awesomium.Windows.Controls.WebControl.OnTitleChanged(Awesomium.Core.TitleChangedEventArgs)">
<summary>
Triggers the <see cref="E:Awesomium.Windows.Controls.WebControl.TitleChanged"/> event.
</summary>
</member>
<member name="M:Awesomium.Windows.Controls.WebControl.OnAddressChanged(Awesomium.Core.UrlEventArgs)">
<summary>
Triggers the <see cref="E:Awesomium.Windows.Controls.WebControl.AddressChanged"/> event.
</summary>
</member>
<member name="M:Awesomium.Windows.Controls.WebControl.OnToolTipChanged(Awesomium.Core.ToolTipChangedEventArgs)">
<summary>
Triggers the <see cref="E:Awesomium.Windows.Controls.WebControl.ToolTipChanged"/> event.
</summary>
</member>
<member name="M:Awesomium.Windows.Controls.WebControl.OnTargetURLChanged(Awesomium.Core.UrlEventArgs)">
<summary>
Triggers the <see cref="E:Awesomium.Windows.Controls.WebControl.TargetURLChanged"/> event.
</summary>
</member>
<member name="M:Awesomium.Windows.Controls.WebControl.OnCursorChanged(Awesomium.Core.CursorChangedEventArgs)">
<summary>
Triggers the <see cref="E:Awesomium.Windows.Controls.WebControl.CursorChanged"/> event.
</summary>
</member>
<member name="M:Awesomium.Windows.Controls.WebControl.OnFocusChanged(Awesomium.Core.FocusChangedEventArgs)">
<summary>
Triggers the <see cref="E:Awesomium.Windows.Controls.WebControl.FocusChanged"/> event.
</summary>
</member>
<member name="M:Awesomium.Windows.Controls.WebControl.OnConsoleMessage(Awesomium.Core.ConsoleMessageEventArgs)">
<summary>
Triggers the <see cref="E:Awesomium.Windows.Controls.WebControl.ConsoleMessage"/> event.
</summary>
</member>
<member name="M:Awesomium.Windows.Controls.WebControl.OnShowCreatedWebView(Awesomium.Core.ShowCreatedWebViewEventArgs)">
<summary>
Triggers the <see cref="E:Awesomium.Windows.Controls.WebControl.ShowCreatedWebView"/> event.
</summary>
</member>
<member name="M:Awesomium.Windows.Controls.WebControl.OnDocumentReady(Awesomium.Core.DocumentReadyEventArgs)">
<summary>
Triggers the <see cref="E:Awesomium.Windows.Controls.WebControl.DocumentReady"/> event.
</summary>
</member>
<member name="M:Awesomium.Windows.Controls.WebControl.OnLoadingFrame(Awesomium.Core.LoadingFrameEventArgs)">
<summary>
Triggers the <see cref="E:Awesomium.Windows.Controls.WebControl.LoadingFrame"/> event.
</summary>
</member>
<member name="M:Awesomium.Windows.Controls.WebControl.OnLoadingFrameFailed(Awesomium.Core.LoadingFrameFailedEventArgs)">
<summary>
Triggers the <see cref="E:Awesomium.Windows.Controls.WebControl.LoadingFrameFailed"/> event.
</summary>
</member>
<member name="M:Awesomium.Windows.Controls.WebControl.OnLoadingFrameComplete(Awesomium.Core.FrameEventArgs)">
<summary>
Triggers the <see cref="E:Awesomium.Windows.Controls.WebControl.LoadingFrameComplete"/> event.
</summary>
</member>
<member name="M:Awesomium.Windows.Controls.WebControl.OnSelectLocalFiles(Awesomium.Core.FileDialogEventArgs)">
<summary>
Triggers the <see cref="E:Awesomium.Windows.Controls.WebControl.SelectLocalFiles"/> event.
</summary>
</member>
<member name="M:Awesomium.Windows.Controls.WebControl.OnLoginRequest(Awesomium.Core.LoginRequestEventArgs)">
<summary>
Triggers the <see cref="E:Awesomium.Windows.Controls.WebControl.LoginRequest"/> event.
</summary>
</member>
<member name="M:Awesomium.Windows.Controls.WebControl.OnCertificateError(Awesomium.Core.CertificateErrorEventArgs)">
<summary>
Triggers the <see cref="E:Awesomium.Windows.Controls.WebControl.CertificateError"/> event.
</summary>
</member>
<member name="M:Awesomium.Windows.Controls.WebControl.OnPrintRequest(Awesomium.Core.PrintRequestEventArgs)">
<summary>
Triggers the <see cref="E:Awesomium.Windows.Controls.WebControl.PrintRequest"/> event.
</summary>
</member>
<member name="M:Awesomium.Windows.Controls.WebControl.OnPrintFailed(Awesomium.Core.PrintOperationEventArgs)">
<summary>
Triggers the <see cref="E:Awesomium.Windows.Controls.WebControl.PrintFailed"/> event.
</summary>
</member>
<member name="M:Awesomium.Windows.Controls.WebControl.OnPrintComplete(Awesomium.Core.PrintCompleteEventArgs)">
<summary>
Triggers the <see cref="E:Awesomium.Windows.Controls.WebControl.PrintComplete"/> event.
</summary>
</member>
<member name="M:Awesomium.Windows.Controls.WebControl.OnShowPopupMenu(Awesomium.Core.PopupMenuEventArgs)">
<summary>
Triggers the <see cref="E:Awesomium.Windows.Controls.WebControl.ShowPopupMenu"/> event.
</summary>
</member>
<member name="M:Awesomium.Windows.Controls.WebControl.OnShowContextMenu(Awesomium.Core.ContextMenuEventArgs)">
<summary>
Triggers the <see cref="E:Awesomium.Windows.Controls.WebControl.ShowContextMenu"/> event.
</summary>
</member>
<member name="M:Awesomium.Windows.Controls.WebControl.OnShowPageInfo(Awesomium.Core.PageInfoEventArgs)">
<summary>
Triggers the <see cref="E:Awesomium.Windows.Controls.WebControl.ShowPageInfo"/> event.
</summary>
</member>
<member name="M:Awesomium.Windows.Controls.WebControl.OnResponsiveChanged(Awesomium.Core.ResponsiveChangedEventArgs)">
<summary>
Triggers the <see cref="E:Awesomium.Windows.Controls.WebControl.ResponsiveChanged"/> event.
</summary>
</member>
<member name="M:Awesomium.Windows.Controls.WebControl.OnCrashed(Awesomium.Core.CrashedEventArgs)">
<summary>
Triggers the <see cref="E:Awesomium.Windows.Controls.WebControl.Crashed"/> event.
</summary>
</member>
<member name="M:Awesomium.Windows.Controls.WebControl.VerifyValid">
<summary>
Verifies the view is live. Throws an exception otherwise.
</summary>
</member>
<member name="M:Awesomium.Windows.Controls.WebControl.VerifyValidParent">
<summary>
Verifies a windowed IWebView has specified a valid parent window.
Throws an exception otherwise.
</summary>
</member>
<member name="M:Awesomium.Windows.Controls.WebControl.AddSettingHandler(System.String,System.Action)">
<summary>
Adds an action to be performed at <see cref="M:Awesomium.Windows.Controls.WebControl.ApplyDesignTimeSettings"/>.
</summary>
<param name="property">The property the action is supposed to set.</param>
<param name="handler">Delegate of the action.</param>
</member>
<member name="M:Awesomium.Windows.Controls.WebControl.ApplyDesignTimeSettings">
<summary>
Should be called by <see cref="T:Awesomium.Core.IWebView"/> components,
right after the underlying view has been created.
</summary>
</member>
<member name="M:Awesomium.Windows.Controls.WebControl.InitializeStandard">
<summary>
Standard initialization of views.
</summary>
</member>
<member name="M:Awesomium.Windows.Controls.WebControl.ClearStandard">
<summary>
Performs standard actions when a view closes.
</summary>
</member>
<member name="M:Awesomium.Windows.Controls.WebControl.LoginRespond(Awesomium.Core.LoginRequestEventArgs)">
<summary>
Login response helper.
</summary>
</member>
<member name="M:Awesomium.Windows.Controls.WebControl.CertificateErrorRespond(Awesomium.Core.CertificateErrorEventArgs)">
<summary>
CertificateError response helper.
</summary>
</member>
<member name="M:Awesomium.Windows.Controls.WebControl.ChooseFilesRespond(Awesomium.Core.FileDialogEventArgs)">
<summary>
Select local files helper.
</summary>
</member>
<member name="M:Awesomium.Windows.Controls.WebControl.GetService(System.Type)">
<summary>
Gets the service object of the specified type.
</summary>
<param name="serviceType">
Specifies the type of service object to get.
</param>
<returns>
A service object of type <paramref name="serviceType"/> or <c>null</c> (<c>Nothing</c> in Visual Basic)
if there is no service object of type <paramref name="serviceType"/>.
</returns>
<remarks>
Several <see cref="T:Awesomium.Core.IWebView"/> features can be accessed through services. This
is because the availability of these features depends on the current state or
the type (see <see cref="T:Awesomium.Core.WebViewType"/>) of the <see cref="T:Awesomium.Core.IWebView"/> instance.
<p/>
Here is a list of services currently available:
<list type="table">
<listheader>
<term>Service Type</term>
<description>Availability</description>
</listheader>
<item>
<term><see cref="T:Awesomium.Core.IWebViewIMEComposition"/></term>
<description>
Only available when <see cref="P:Awesomium.Core.IWebView.ViewType"/> is <see cref="F:Awesomium.Core.WebViewType.Offscreen"/>.
</description>
</item>
</list>
</remarks>
<exception cref="T:System.InvalidOperationException">
The member is called on an invalid view. (See: <see cref="P:Awesomium.Core.IWebView.IsLive"/>)
</exception>
</member>
<member name="M:Awesomium.Windows.Controls.WebControl.GoToHome">
<summary>
Navigates to the Home URL as defined in <see cref="P:Awesomium.Core.WebCore.HomeURL"/>.
</summary><returns>
<c>true</c> if the command was successfully sent. <c>false</c> otherwise.
</returns>
</member>
<member name="M:Awesomium.Windows.Controls.WebControl.LoadHTML(System.String)">
<summary>
Loads a string of HTML into the view asynchronously.
</summary><param name="html">
The HTML string (ASCII) to load.
</param><returns>
<c>true</c> if the command was successfully sent. <c>false</c> otherwise.
</returns>
</member>
<member name="M:Awesomium.Windows.Controls.WebControl.GoBack">
<summary>
Navigates one step backwards in history.
</summary><exception cref="T:System.InvalidOperationException">
The member is called on an invalid view. (See: <see cref="P:Awesomium.Core.IWebView.IsLive"/>)
</exception>
</member>
<member name="M:Awesomium.Windows.Controls.WebControl.GoForward">
<summary>
Navigates one step forward in history.
</summary><exception cref="T:System.InvalidOperationException">
The member is called on an invalid view. (See: <see cref="P:Awesomium.Core.IWebView.IsLive"/>)
</exception>
</member>
<member name="M:Awesomium.Windows.Controls.WebControl.GoToHistoryOffset(System.Int32)">
<summary>
Navigates back/forward in history via a relative offset.
</summary><param name="offset">
The relative offset in history to navigate to. (Can be negative)
</param><exception cref="T:System.InvalidOperationException">
The member is called on an invalid view. (See: <see cref="P:Awesomium.Core.IWebView.IsLive"/>)
</exception>
</member>
<member name="M:Awesomium.Windows.Controls.WebControl.Stop">
<summary>
Stops the current navigation.
</summary><exception cref="T:System.InvalidOperationException">
The member is called on an invalid view. (See: <see cref="P:Awesomium.Core.IWebView.IsLive"/>)
</exception>
</member>
<member name="M:Awesomium.Windows.Controls.WebControl.Reload(System.Boolean)">
<summary>
Reloads the current page.
</summary><param name="ignoreCache">
Indicates if cached resources should be ignored when reloading.
When this is <c>true</c>, all resources will be reloaded from the server.
</param><returns>
<c>true</c> if the command was successfully sent. <c>false</c> otherwise.
</returns>
</member>
<member name="M:Awesomium.Windows.Controls.WebControl.CanGoBack">
<summary>
Gets if we can go back in history.
</summary><returns>
<c>true</c> if the view can go back in history. <c>false</c> otherwise.
</returns>
</member>
<member name="M:Awesomium.Windows.Controls.WebControl.CanGoForward">
<summary>
Gets if we can go forward in history.
</summary><returns>
<c>true</c> if the view can go forward in history. <c>false</c> otherwise.
</returns>
</member>
<member name="M:Awesomium.Windows.Controls.WebControl.GetLastError">
<summary>
Check if an error occurred during the last synchronous Javascript interoperation call.
</summary><returns>
An <see cref="T:Awesomium.Core.Error"/> value indicating the error that may have occurred
during the last synchronous Javascript interoperation API call.
</returns><seealso cref="M:Awesomium.Core.IWebView.CreateGlobalJavascriptObject(System.String)"/><seealso cref="M:Awesomium.Core.IWebView.ExecuteJavascriptWithResult(System.String)"/>
</member>
<member name="M:Awesomium.Windows.Controls.WebControl.CreateGlobalJavascriptObject(System.String)">
<summary>
Create a global JavaScript object that will persist between all loaded pages,
for the lifetime of this <see cref="T:Awesomium.Core.IWebView"/> instance.
</summary><param name="name">
The name of the object as it will appear in JavaScript.
</param><returns>
If this call succeeds, the returned <see cref="T:Awesomium.Core.JSValue"/> will be of type 'Object'
(see <see cref="P:Awesomium.Core.JSValue.IsObject"/>). You can check the reason why the call failed by calling
<see cref="M:Awesomium.Core.IWebView.GetLastError"/> after this method.
</returns><remarks>
Global Objects can only contain the following JavaScript types as
properties:
<list type="bullet">
<item>
<description>
<c>Number</c>
</description>
</item>
<item>
<description>
<c>String</c>
</description>
</item>
<item>
<description>
<c>Array</c>
</description>
</item>
<item>
<description>
<c>Null</c>
</description>
</item>
<item>
<description>
<c>Other Global Objects</c>
</description>
</item>
<item>
<description>
<c>Undefined</c>
</description>
</item>
</list>
<p/>
Global Objects will retain any custom methods that are registered
(see <see cref="O:Awesomium.Core.JSObject.Bind"/>).
<note>
To create a child global-object, you should specify the full name with dot-notation for example:
<c>parentObject.childObject</c>.
<p/>
The parent object should exist before attempting to make any children.
</note>
<note>
You can create global Javascript objects on a view, as soon as it goes <i>live</i>. (<see cref="P:Awesomium.Core.IWebView.IsLive"/> is
<c>true</c>). On technology specific <c>WebControls</c>, you should wait for the <see cref="E:Awesomium.Core.IWebView.NativeViewInitialized"/>
event. <see cref="T:Awesomium.Core.WebView"/> components go live immediately after creation.
</note>
</remarks><exception cref="T:System.InvalidOperationException">
The member is called on an invalid view. (See: <see cref="P:Awesomium.Core.IWebView.IsLive"/>)
</exception><exception cref="T:System.NotSupportedException">
The operation is not supported on a Developer Tools Inspector view (see: <see cref="P:Awesomium.Core.IWebView.IsJavascriptEnabled"/>).
</exception><exception cref="T:System.NotSupportedException">
Javascript calls are not supported when Javascript is disabled (see: <see cref="P:Awesomium.Core.IWebView.IsJavascriptEnabled"/>).
</exception><exception cref="T:System.InvalidOperationException">
The member is called from inside a synchronous <a href="http://wiki.awesomium.net/javascript/jec.html">Javascript Execution Context</a>.
</exception><exception cref="T:System.ArgumentException">
The specified <paramref name="name"/> is reserved. It either represents an HTML DOM object,
or an object variable already available in the page. Use <see cref="M:Awesomium.Core.IWebView.ExecuteJavascriptWithResult(System.String)"/>
after <see cref="E:Awesomium.Core.IWebView.DocumentReady"/>, to obtain this object.
</exception>
</member>
<member name="M:Awesomium.Windows.Controls.WebControl.ExecuteJavascript(System.String)">
<summary>
Executes some JavaScript asynchronously in the main frame of the page.
</summary><param name="script">
The string of JavaScript to execute.
</param><exception cref="T:System.InvalidOperationException">
The member is called on an invalid view. (See: <see cref="P:Awesomium.Core.IWebView.IsLive"/>)
</exception><exception cref="T:System.NotSupportedException">
The operation is not supported on a Developer Tools Inspector view (see: <see cref="P:Awesomium.Core.IWebView.IsJavascriptEnabled"/>).
</exception><exception cref="T:System.NotSupportedException">
Javascript calls are not supported when Javascript is disabled (see: <see cref="P:Awesomium.Core.IWebView.IsJavascriptEnabled"/>).
</exception><exception cref="T:System.InvalidOperationException">
Attempted to execute Javascript on the page, before the DOM is ready.
Wait for the <see cref="E:Awesomium.Core.IWebView.DocumentReady"/> event before executing your Javascript.
</exception>
</member>
<member name="M:Awesomium.Windows.Controls.WebControl.ExecuteJavascript(System.String,System.String)">
<summary>
Executes some JavaScript asynchronously on the page.
</summary><param name="script">
The string of JavaScript to execute.
</param><param name="frameXpath">
The xpath of the frame to execute within; leave
this blank to execute in the main frame.
</param><exception cref="T:System.InvalidOperationException">
The member is called on an invalid view. (See: <see cref="P:Awesomium.Core.IWebView.IsLive"/>)
</exception><exception cref="T:System.NotSupportedException">
The operation is not supported on a Developer Tools Inspector view (see: <see cref="P:Awesomium.Core.IWebView.IsJavascriptEnabled"/>).
</exception><exception cref="T:System.NotSupportedException">
Javascript calls are not supported when Javascript is disabled (see: <see cref="P:Awesomium.Core.IWebView.IsJavascriptEnabled"/>).
</exception><exception cref="T:System.InvalidOperationException">
Attempted to execute Javascript on the page, before the DOM is ready.
Wait for the <see cref="E:Awesomium.Core.IWebView.DocumentReady"/> event before executing your Javascript.
</exception>
</member>
<member name="M:Awesomium.Windows.Controls.WebControl.ExecuteJavascriptWithResult(System.String)">
<summary>
Executes some JavaScript synchronously in the main frame of the page, and returns a result.
</summary><param name="script">
The string of JavaScript to execute.
</param><returns>
Returns the result (if any). Any <see cref="T:Awesomium.Core.JSObject"/> returned from this
method will be a remote proxy for an object contained within the view's process.
If this call fails, the returned <see cref="T:Awesomium.Core.JSValue"/> will have an <c>Undefined</c> type.
(see <see cref="P:Awesomium.Core.JSValue.IsUndefined"/>). You can check <see cref="M:Awesomium.Core.IWebView.GetLastError"/> for more
information about the failure.
</returns><exception cref="T:System.InvalidOperationException">
The member is called on an invalid view. (See: <see cref="P:Awesomium.Core.IWebView.IsLive"/>)
</exception><exception cref="T:System.NotSupportedException">
The operation is not supported on a Developer Tools Inspector view (see: <see cref="P:Awesomium.Core.IWebView.IsJavascriptEnabled"/>).
</exception><exception cref="T:System.NotSupportedException">
Javascript calls are not supported when Javascript is disabled (see: <see cref="P:Awesomium.Core.IWebView.IsJavascriptEnabled"/>).
</exception><exception cref="T:System.InvalidOperationException">
The member is called from inside a synchronous <a href="http://wiki.awesomium.net/javascript/jec.html">Javascript Execution Context</a>
</exception><exception cref="T:System.InvalidOperationException">
Attempted to execute Javascript on the page, before the DOM is ready.
Wait for the <see cref="E:Awesomium.Core.IWebView.DocumentReady"/> event before executing your Javascript.
</exception>
</member>
<member name="M:Awesomium.Windows.Controls.WebControl.ExecuteJavascriptWithResult(System.String,System.String)">
<summary>
Executes some JavaScript synchronously on the page, and returns a result.
</summary><param name="script">
The string of JavaScript to execute.
</param><param name="frameXPath">
The xpath of the frame to execute within; leave
this blank to execute in the main frame.
</param><returns>
Returns the result (if any). Any <see cref="T:Awesomium.Core.JSObject"/> returned from this
method will be a remote proxy for an object contained within the view's process.
If this call fails, the returned <see cref="T:Awesomium.Core.JSValue"/> will have an <c>Undefined</c> type.
(see <see cref="P:Awesomium.Core.JSValue.IsUndefined"/>). You can check <see cref="M:Awesomium.Core.IWebView.GetLastError"/> for more
information about the failure.
</returns><exception cref="T:System.InvalidOperationException">
The member is called on an invalid view. (See: <see cref="P:Awesomium.Core.IWebView.IsLive"/>)
</exception><exception cref="T:System.NotSupportedException">
The operation is not supported on a Developer Tools Inspector view (see: <see cref="P:Awesomium.Core.IWebView.IsJavascriptEnabled"/>).
</exception><exception cref="T:System.NotSupportedException">
Javascript calls are not supported when Javascript is disabled (see: <see cref="P:Awesomium.Core.IWebView.IsJavascriptEnabled"/>).
</exception><exception cref="T:System.InvalidOperationException">
The member is called from inside a synchronous <a href="http://wiki.awesomium.net/javascript/jec.html">Javascript Execution Context</a>
</exception><exception cref="T:System.InvalidOperationException">
Attempted to execute Javascript on the page, before the DOM is ready.
Wait for the <see cref="E:Awesomium.Core.IWebView.DocumentReady"/> event before executing your Javascript.
</exception>
</member>
<member name="M:Awesomium.Windows.Controls.WebControl.Undo">
<summary>
Undo the last 'edit' operation. (Similar to CTRL+Z).
</summary><exception cref="T:System.InvalidOperationException">
The member is called on an invalid view. (See: <see cref="P:Awesomium.Core.IWebView.IsLive"/>)
</exception>
</member>
<member name="M:Awesomium.Windows.Controls.WebControl.Redo">
<summary>
Redo the last 'edit' operation. (Similar to CTRL+Y).
</summary><exception cref="T:System.InvalidOperationException">
The member is called on an invalid view. (See: <see cref="P:Awesomium.Core.IWebView.IsLive"/>)
</exception>
</member>
<member name="M:Awesomium.Windows.Controls.WebControl.Cut">
<summary>
Performs a 'cut' operation using the system clipboard.
</summary><exception cref="T:System.InvalidOperationException">
The member is called on an invalid view. (See: <see cref="P:Awesomium.Core.IWebView.IsLive"/>)
</exception>
</member>
<member name="M:Awesomium.Windows.Controls.WebControl.Copy">
<summary>
Performs a 'copy' operation using the system clipboard.
</summary><exception cref="T:System.InvalidOperationException">
The member is called on an invalid view. (See: <see cref="P:Awesomium.Core.IWebView.IsLive"/>)
</exception>
</member>
<member name="M:Awesomium.Windows.Controls.WebControl.CopyHTML">
<summary>
Copies the HTML content currently selected in this view, to the system clipboard.
</summary><exception cref="T:System.InvalidOperationException">
The member is called on an invalid view.
</exception>
</member>
<member name="M:Awesomium.Windows.Controls.WebControl.CopyLinkAddress">
<summary>
Copies the target URL of the link currently under the cursor.
</summary><exception cref="T:System.InvalidOperationException">
The member is called on an invalid view.
</exception>
</member>
<member name="M:Awesomium.Windows.Controls.WebControl.CopyImageAt(System.Int32,System.Int32)">
<summary>
Attempt to copy an image on the page, to the system clipboard.
This is meant to be used with <see cref="E:Awesomium.Core.IWebView.ShowContextMenu"/>.
</summary><param name="x">The x-coordinate.</param><param name="y">The y-coordinate.</param><remarks>
All coordinates should be localized to the view. All values are in
pixels, the origin (0,0) begins at the top-left corner of the view,
positive <paramref name="y"/> values are "down" and positive <paramref name="x"/>
values are "right".
</remarks><exception cref="T:System.InvalidOperationException">
The member is called on an invalid view. (See: <see cref="P:Awesomium.Core.IWebView.IsLive"/>)
</exception>
</member>
<member name="M:Awesomium.Windows.Controls.WebControl.SaveImageAt(System.Int32,System.Int32)">
<summary>
Attempt to download an image at the specified coordinates in the page.
This is meant to be used with <see cref="E:Awesomium.Core.IWebView.ShowContextMenu"/>.
</summary><param name="x">
An x-coordinate within an image in the page.
</param><param name="y">
A y-coordinate within an image in the page.
</param><remarks>
All coordinates should be localized to the view. All values are in
pixels, the origin (0,0) begins at the top-left corner of the view,
positive <paramref name="y"/> values are "down" and positive <paramref name="x"/>
values are "right".
<p/>
This method will attempt to download the image at the specified coordinates,
directly from the server. In technology-specific WebControls, a <b><i>Save As</i></b>
dialog will be shown in response to the download request.
<p/>
If you are using the <i>headless</i> <see cref="T:Awesomium.Core.WebView"/> component, you will have to
handle <see cref="E:Awesomium.Core.WebCore.Download"/> to either display a dialog or silently save
the resource. More appropriately in this case, you should assign your implementation
of <see cref="T:Awesomium.Core.IWebViewPresenter"/> to <see cref="P:Awesomium.Core.WebView.Presenter"/>, to handle
UI related events including <see cref="M:Awesomium.Core.IWebViewPresenter.ShowDownloadDialog(Awesomium.Core.DownloadEventArgs)"/>.
</remarks><returns>
<c>true</c> if a download operation for an image at the specified coordinates,
was successfully triggered; <c>false</c> otherwise.
</returns><exception cref="T:System.InvalidOperationException">
The member is called on an invalid view. (See: <see cref="P:Awesomium.Core.IWebView.IsLive"/>)
</exception><seealso cref="E:Awesomium.Core.WebCore.Download"/><seealso cref="M:Awesomium.Core.IWebViewPresenter.ShowDownloadDialog(Awesomium.Core.DownloadEventArgs)"/><seealso cref="M:Awesomium.Core.IWebView.CopyImageAt(System.Int32,System.Int32)"/>
</member>
<member name="M:Awesomium.Windows.Controls.WebControl.Paste">
<summary>
Performs a 'paste' operation using the system clipboard.
</summary><exception cref="T:System.InvalidOperationException">
The member is called on an invalid view. (See: <see cref="P:Awesomium.Core.IWebView.IsLive"/>)
</exception>
</member>
<member name="M:Awesomium.Windows.Controls.WebControl.PasteAndMatchStyle">
<summary>
Performs a 'paste' operation using the system clipboard while attempting
to preserve any styles of the original text.
</summary><exception cref="T:System.InvalidOperationException">
The member is called on an invalid view. (See: <see cref="P:Awesomium.Core.IWebView.IsLive"/>)
</exception>
</member>
<member name="M:Awesomium.Windows.Controls.WebControl.SelectAll">
<summary>
Performs a 'select all' operation.
</summary><exception cref="T:System.InvalidOperationException">
The member is called on an invalid view. (See: <see cref="P:Awesomium.Core.IWebView.IsLive"/>)
</exception>
</member>
<member name="M:Awesomium.Windows.Controls.WebControl.PrintToFile(System.String,Awesomium.Core.PrintConfig)">
<summary>
Prints this <see cref="T:Awesomium.Core.IWebView"/> instance to a PDF file, asynchronously.
You should generally use this method in response to a <see cref="E:Awesomium.Core.IWebView.PrintRequest"/>
event.
</summary><param name="outputDirectory">
A writeable directory to write the file(s) to.
</param><param name="config">
The configuration settings to use.
</param><returns>
Returns a unique request identifier that you can use later to identify
this specific request (see <see cref="E:Awesomium.Core.IWebView.PrintFailed"/> and <see cref="E:Awesomium.Core.IWebView.PrintComplete"/>).
May return <c>0</c> if this method fails prematurely.
</returns><exception cref="T:System.InvalidOperationException">
The member is called on an invalid view. (See: <see cref="P:Awesomium.Core.IWebView.IsLive"/>)
</exception><exception cref="T:System.IO.DirectoryNotFoundException">
The specified output directory <paramref name="outputDirectory"/>, does not exist.
</exception><exception cref="T:System.ArgumentException">
<paramref name="outputDirectory"/> is a zero-length string, contains only white space, or contains one
or more of the invalid characters defined in <see cref="M:System.IO.Path.GetInvalidPathChars"/>. -OR-
The system could not retrieve the absolute path.
</exception><exception cref="T:System.Security.SecurityException">
The caller does not have the required permissions.
</exception><exception cref="T:System.ArgumentNullException">
<paramref name="outputDirectory"/> is <c>null</c> (<c>Nothing</c> in Visual Basic).
</exception><exception cref="T:System.NotSupportedException">
<paramref name="outputDirectory"/> contains a colon (":") that is not part of a volume identifier (for example, "c:\").
</exception><exception cref="T:System.IO.PathTooLongException">
The acquired full path to the specified <paramref name="outputDirectory"/>, exceeds the system-defined maximum
length. For example, on Windows-based platforms, paths must be less than 248 characters,
and file names must be less than 260 characters.
</exception><seealso cref="T:Awesomium.Core.PrintConfig"/><seealso cref="E:Awesomium.Core.IWebView.PrintRequest"/><seealso cref="E:Awesomium.Core.IWebView.Printing"/><seealso cref="E:Awesomium.Core.IWebView.PrintFailed"/><seealso cref="E:Awesomium.Core.IWebView.PrintComplete"/><seealso cref="P:Awesomium.Core.IWebView.IsPrinting"/>
</member>
<member name="M:Awesomium.Windows.Controls.WebControl.ZoomIn">
<summary>
Zooms into the page by <c>20%</c>.
</summary><remarks>
<note>
Zoom amount is saved per hostname.
</note>
<note>
This operation is asynchronous: the value may not change for several
milliseconds after you call this member.
</note>
</remarks><exception cref="T:System.InvalidOperationException">
The member is called on an invalid view. (See: <see cref="P:Awesomium.Core.IWebView.IsLive"/>)
</exception><seealso cref="M:Awesomium.Core.IWebView.ZoomOut"/><seealso cref="P:Awesomium.Core.IWebView.Zoom"/><seealso cref="M:Awesomium.Core.WebSession.GetZoomForURL(System.Uri)"/><seealso cref="M:Awesomium.Core.IWebView.ResetZoom"/>
</member>
<member name="M:Awesomium.Windows.Controls.WebControl.ZoomOut">
<summary>
Zooms out the page by <c>20%</c>.
</summary><remarks>
<note>
Zoom amount is saved per hostname.
</note>
<note>
This operation is asynchronous: the value may not change for several
milliseconds after you call this member.
</note>
</remarks><exception cref="T:System.InvalidOperationException">
The member is called on an invalid view. (See: <see cref="P:Awesomium.Core.IWebView.IsLive"/>)
</exception><seealso cref="M:Awesomium.Core.IWebView.ZoomIn"/><seealso cref="P:Awesomium.Core.IWebView.Zoom"/><seealso cref="M:Awesomium.Core.WebSession.GetZoomForURL(System.Uri)"/><seealso cref="M:Awesomium.Core.IWebView.ResetZoom"/>
</member>
<member name="M:Awesomium.Windows.Controls.WebControl.ResetZoom">
<summary>
Resets the zoom level for the currently loaded host.
</summary><remarks>
<note>
Zoom amount is saved per hostname.
</note>
<note>
This operation is asynchronous: the value may not change for several
milliseconds after you call this member.
</note>
</remarks><exception cref="T:System.InvalidOperationException">
The member is called on an invalid view. (See: <see cref="P:Awesomium.Core.IWebView.IsLive"/>)
</exception><seealso cref="P:Awesomium.Core.IWebView.Zoom"/><seealso cref="M:Awesomium.Core.IWebView.ZoomIn"/><seealso cref="M:Awesomium.Core.IWebView.ZoomOut"/><seealso cref="M:Awesomium.Core.WebSession.GetZoomForURL(System.Uri)"/>
</member>
<member name="M:Awesomium.Windows.Controls.WebControl.RequestPageInfo">
<summary>
Issues a request for the currently loaded page's security
info. Information will be retrieved through the
<see cref="E:Awesomium.Core.IWebView.ShowPageInfo"/> event.
</summary><exception cref="T:System.InvalidOperationException">
The member is called on an invalid view. (See: <see cref="P:Awesomium.Core.IWebView.IsLive"/>)
</exception><exception cref="T:System.NotSupportedException">
The operation is not supported on a Developer Tools Inspector view (see: <see cref="P:Awesomium.Core.IWebView.IsJavascriptEnabled"/>).
</exception>
</member>
<member name="M:Awesomium.Windows.Controls.WebControl.ReduceMemoryUsage">
<summary>
Forces V8 to release as much memory as possible (collects garbage, dumps
cached structures, etc) and also clears WebKit cache. This helps to
reduce memory accumulated within the process associated with this view.
</summary><exception cref="T:System.InvalidOperationException">
The member is called on an invalid view. (See: <see cref="P:Awesomium.Core.IWebView.IsLive"/>)
</exception><seealso cref="P:Awesomium.Core.WebConfig.ReduceMemoryUsageOnNavigation"/>
</member>
<member name="M:Awesomium.Windows.Controls.WebControl.CreateJavascriptExecutionContext``1(Awesomium.Core.JavascriptExecutionContextMethod{``0},``0)">
<!-- No matching elements were found for the following include tag --><include file="../Awesomium.Core/Awesomium.Core_S.XML" path="doc/members/member[@name="M:Awesomium.Core.IWebView.CreateJavascriptExecutionContext{T}"]/*"/>
</member>
<member name="M:Awesomium.Windows.Controls.WebControl.CreateJavascriptExecutionContext(Awesomium.Core.JavascriptExecutionContextMethod)">
<!-- No matching elements were found for the following include tag --><include file="../Awesomium.Core/Awesomium.Core_S.XML" path="doc/members/member[@name="M:Awesomium.Core.IWebView.CreateJavascriptExecutionContext"]/*"/>
</member>
<member name="M:Awesomium.Windows.Controls.WebControl.#ctor">
<summary>
Creates and initializes an instance of <see cref="T:Awesomium.Windows.Controls.WebControl"/> and its underlying web view.
</summary>
</member>
<member name="M:Awesomium.Windows.Controls.WebControl.Dispose">
<summary>
Destroys and removes this web view control. Any call to members of this control
after calling this method, will cause a <see cref="T:System.InvalidOperationException"/>.
</summary>
<remarks>
To avoid exceptions, do not call this method when the hosting UI of the control (if any)
is still alive and visible.
</remarks>
</member>
<member name="M:Awesomium.Windows.Controls.WebControl.OnIsEnabledChanged(System.Windows.DependencyPropertyChangedEventArgs)">
<summary>
Maintains the relationship between the control's enabled status and internal
asynchronous rendering (see <see cref="P:Awesomium.Core.IWebView.IsRendering"/>).
</summary>
<remarks>
In addition to its regular meaning, the <see cref="P:System.Windows.UIElement.IsEnabled"/> property indicates
if internal asynchronous rendering of the underlying web-view, is currently active.
<note>
All rendering in the underlying web-view is actually done asynchronously in a separate process
and so the page is usually continuously rendering internally. Setting <see cref="P:System.Windows.UIElement.IsEnabled"/>
to <c>false</c>, will temporarily pause rendering.
</note>
<note type="inherit">
Inheritors can override <see cref="M:Awesomium.Windows.Controls.WebControl.OnIsEnabledChanged(System.Windows.DependencyPropertyChangedEventArgs)"/>,
then set <see cref="P:Awesomium.Core.IWebView.IsRendering"/> manually if they want to <i>disconnect</i> internal asynchronous
rendering, from the control's enabled status.
</note>
<note>
Note that this method is provided by the WPF <see cref="T:Awesomium.Windows.Controls.WebControl"/> so that
you can control the relationship between the control's enabled status
and internal asynchronous rendering (see <see cref="P:Awesomium.Core.IWebView.IsRendering"/>). It does
not trigger the <see cref="E:System.Windows.UIElement.IsEnabledChanged"/> event.
The <see cref="E:System.Windows.UIElement.IsEnabledChanged"/> event is fired by the
.NET Framework <b>before</b> this method is called.
</note>
</remarks>
<seealso cref="P:Awesomium.Windows.Controls.WebControl.IsRendering"/>
</member>
<member name="M:Awesomium.Windows.Controls.WebControl.OnApplyTemplate">
<inheritdoc />
</member>
<member name="M:Awesomium.Windows.Controls.WebControl.OnGotFocus(System.Windows.RoutedEventArgs)">
<inheritdoc />
</member>
<member name="M:Awesomium.Windows.Controls.WebControl.OnGotKeyboardFocus(System.Windows.Input.KeyboardFocusChangedEventArgs)">
<inheritdoc />
</member>
<member name="M:Awesomium.Windows.Controls.WebControl.FocusView">
<summary>
Notifies the current page that it has gained focus.
</summary>
<remarks>
You will need to call this to gain text-box focus, among other things.
(If you fail to ever see a blinking caret when typing text, this is why.)
</remarks>
<remarks>
<note type="inherit">
<see cref="T:Awesomium.Windows.Controls.WebControl"/> handles this internally. Inheritors do not need to call this method unless
they implement custom logic.
</note>
<note type="caution">
For performance reasons, no validity check is performed when calling protected members.
Inheritors should perform any such checks (see <see cref="P:Awesomium.Windows.Controls.WebControl.IsLive"/>), before calling these members.
</note>
</remarks>
</member>
<member name="M:Awesomium.Windows.Controls.WebControl.UnfocusView">
<summary>
Notifies the current page that it has lost focus.
</summary>
<remarks>
<note type="inherit">
<see cref="T:Awesomium.Windows.Controls.WebControl"/> handles this internally. Inheritors do not need to call this method unless
they implement custom logic.
</note>
<note type="caution">
For performance reasons, no validity check is performed when calling protected members.
Inheritors should perform any such checks (see <see cref="P:Awesomium.Windows.Controls.WebControl.IsLive"/>), before calling these members.
</note>
</remarks>
</member>
<member name="M:Awesomium.Windows.Controls.WebControl.InjectMouseMove(System.Int32,System.Int32)">
<summary>
Injects a mouse-move event in local coordinates.
</summary>
<param name="x">
The absolute x-coordinate of the mouse (relative to the <see cref="T:Awesomium.Windows.Controls.WebControl"/> itself).
</param>
<param name="y">
The absolute y-coordinate of the mouse (relative to the <see cref="T:Awesomium.Windows.Controls.WebControl"/> itself).
</param>
<remarks>
<note type="inherit">
<see cref="T:Awesomium.Windows.Controls.WebControl"/> handles this internally. Inheritors do not need to call this method unless
they implement custom logic.
</note>
<note>
This method bypasses the setting of the <see cref="P:Awesomium.Windows.Controls.WebControl.ProcessInput"/> property.
</note>
<note type="caution">
For performance reasons, no validity check is performed when calling protected members.
Inheritors should perform any such checks (see <see cref="P:Awesomium.Windows.Controls.WebControl.IsLive"/>), before calling these members.
</note>
</remarks>
</member>
<member name="M:Awesomium.Windows.Controls.WebControl.InjectMouseDown(Awesomium.Core.MouseButton)">
<summary>
Injects a mouse-down event.
</summary>
<param name="button">
The mouse button that was pressed.
</param>
<remarks>
<note type="inherit">
<see cref="T:Awesomium.Windows.Controls.WebControl"/> handles this internally. Inheritors do not need to call this method unless
they implement custom logic.
</note>
<note>
This method bypasses the setting of the <see cref="P:Awesomium.Windows.Controls.WebControl.ProcessInput"/> property.
</note>
<note type="caution">
For performance reasons, no validity check is performed when calling protected members.
Inheritors should perform any such checks (see <see cref="P:Awesomium.Windows.Controls.WebControl.IsLive"/>), before calling these members.
</note>
</remarks>
</member>
<member name="M:Awesomium.Windows.Controls.WebControl.InjectMouseUp(Awesomium.Core.MouseButton)">
<summary>
Injects a mouse-up event.
</summary>
<param name="button">
The mouse button that was released.
</param>
<remarks>
<note type="inherit">