public static bool GetIsAttached(Windows.UI.Xaml.Controls.WebView obj)
 {
     return((bool)obj.GetValue(IsAttachedProperty));
 }
Exemple #2
0
 /// <summary>
 /// Gets source string
 /// </summary>
 /// <param name="obj">Webview</param>
 /// <returns>Source string</returns>
 public static string GetSourceString(_WebView obj)
 {
     return((string)obj.GetValue(SourceStringProperty));
 }