GroupBuilderRoot class
GroupBuilderRoot
Represents a group builder rules for a group.
Parent class
Inherits from object
Constructors
- (int ResourceId "Resource Id of the Group") - Load rules of group
Methods
- Empty Save() - Save the rules
- (From object) string ToString() - The string representation of the object.
Properties
- string ObjectTypeName { get; } - The name of the type of object.
- GroupBuilderRuleCollection RootRules { get; } - The root rules
- (From object) TypeInformation TypeInformation { get; } - Get information about this class.
Examples
//add a new rule without variable
number groupRId = 15560405;
GroupBuilderRoot root = new GroupBuilderRoot (groupRId);
GroupBuilderRule rule = new GroupBuilderRule (root);
GroupBuilderRuleCollection ruleColection = root.RootRules;
ruleColection.Add(rule);
root.Save();