Exemple #1
0
 public static bool HasTableSettings(this TableControlModel model)
 {
     return(model.HasStereotype("Table Settings"));
 }
 public bool Equals(TableControlModel other)
 {
     return(Equals(_element, other?._element));
 }
Exemple #3
0
        public static TableSettings GetTableSettings(this TableControlModel model)
        {
            var stereotype = model.GetStereotype("Table Settings");

            return(stereotype != null ? new TableSettings(stereotype) : null);
        }