AddGroup

Creates a new group with the given name

public bool AddGroup(string groupName)
groupName
string required

The name of the group

bool
using System;
public class CPHInline
{
    public bool Execute()
    {
        //Define the groupname you want to create
        string groupName = "Test Group";

        //Method returns a bool type which you can check if the group was added
        bool gotAdded = CPH.AddGroup(groupName);         return true;
    }
}