Exemple #1
0
 public static bool HasBase(this IAttCommonPart e)
 {
     return(MeiAtt_controller.HasAttribute(e, "xml:base"));
 }
Exemple #2
0
 public static void RemoveBase(this IAttCommonPart e)
 {
     MeiAtt_controller.RemoveAttribute(e, "xml:base");
 }
Exemple #3
0
 public static void SetBase(this IAttCommonPart e, string _val)
 {
     MeiAtt_controller.SetAttribute(e, "xml:base", _val);
 }
Exemple #4
0
 public static XAttribute GetBase(this IAttCommonPart e)
 {
     return(MeiAtt_controller.GetAttribute(e, "xml:base"));
 }
Exemple #5
0
 public static void RemoveLabel(this IAttCommonPart e)
 {
     MeiAtt_controller.RemoveAttribute(e, "label");
 }
Exemple #6
0
 public static bool HasLabel(this IAttCommonPart e)
 {
     return(MeiAtt_controller.HasAttribute(e, "label"));
 }
Exemple #7
0
 public static XAttribute GetLabel(this IAttCommonPart e)
 {
     return(MeiAtt_controller.GetAttribute(e, "label"));
 }
Exemple #8
0
 public static void SetLabel(this IAttCommonPart e, string _val)
 {
     MeiAtt_controller.SetAttribute(e, "label", _val);
 }
 public static string GetLabelValue(this IAttCommonPart e)
 {
     return(MeiAtt_controller.GetAttributeValue(e, "label"));
 }