adTempus API
ArcanaDevelopment.adTempus.Client Namespace / JobGroup Class / Name Property


In This Topic
    Name Property (JobGroup)
    In This Topic
    The user-supplied name for the group
    Syntax
    'Declaration
     
    
    Public Property Name As String
    public string Name {get; set;}
    public:
    property String^ Name {
       String^ get();
       void set (    String^ value);
    }
    Exceptions
    ExceptionDescription
    Thrown if you attempt to change the name of the Root group.
    Remarks

    The Name must be unique within the parent ParentGroup. However, the name is not used by adTempus to uniquely identify the group; the OID is used for this. Changing the Name has no effect on links to other objects within adTempus.

    Do not include backslashes ("\") in the group name, as these are used to separate levels in the group hierarchy.

    The name of the Root group (IsRootGroup is true) cannot be changed; attempting to do so will produce an InvalidOperationException.

    The Name must be unique within the parent ParentGroup. However, the name is not used by adTempus to uniquely identify the group; the OID is used for this. Changing the Name has no effect on links to other objects within adTempus.

    Do not include backslashes ("\") in the group name, as these are used to separate levels in the group hierarchy.

    The name of the Root group (IsRootGroup is true) cannot be changed; attempting to do so will produce an InvalidOperationException.

    See Also