Beispiel #1
0
 public static void RemoveSubtype(this IAttTyped e)
 {
     MeiAtt_controller.RemoveAttribute(e, "subtype");
 }
Beispiel #2
0
 public static bool HasSubtype(this IAttTyped e)
 {
     return(MeiAtt_controller.HasAttribute(e, "subtype"));
 }
Beispiel #3
0
 public static XAttribute GetSubtypeAttribute(this IAttTyped e)
 {
     return(MeiAtt_controller.GetAttribute(e, "subtype"));
 }
Beispiel #4
0
 public static string GetSubtypeValue(this IAttTyped e)
 {
     return(MeiAtt_controller.GetAttributeValue(e, "subtype"));
 }
Beispiel #5
0
 public static void SetSubtype(this IAttTyped e, string _val)
 {
     MeiAtt_controller.SetAttribute(e, "subtype", _val);
 }