Top Method Summary
Options Name Purpose
# A AssignFromBuffer (handle) Copies the buffer values to the entity table's properties
Overrides Consultingwerk.SmartFramework.Authorization.SmartUserGroup_Generated:AssignFromBuffer (handle)
# A AssignToBuffer (handle) Copies the entity table's properties to the buffer values
Overrides Consultingwerk.SmartFramework.Authorization.SmartUserGroup_Generated:AssignToBuffer (handle)
# HANDLE GetChildRecord (handle, character) Returns the first (and typically only) child record of a to-one relation
Inherited from Consultingwerk.OERA.EntityTable
# GetChildRecords (handle, character, Object, character) Populates a List of child records
Inherited from Consultingwerk.OERA.EntityTable
+ InitializeNewRow () Initializes a New row
Inherited from Consultingwerk.OERA.EntityTable
# OnGroupGuidChanged (EventArgs) Raises the GroupGuidChanged event
Inherited from Consultingwerk.SmartFramework.Authorization.SmartUserGroup_Generated
# OnGroupNameChanged (EventArgs) Raises the GroupNameChanged event
Inherited from Consultingwerk.SmartFramework.Authorization.SmartUserGroup_Generated
# OnUserGroupGuidChanged (EventArgs) Raises the UserGroupGuidChanged event
Inherited from Consultingwerk.SmartFramework.Authorization.SmartUserGroup_Generated
# OnUserGuidChanged (EventArgs) Raises the UserGuidChanged event
Inherited from Consultingwerk.SmartFramework.Authorization.SmartUserGroup_Generated
# OnUserNameChanged (EventArgs) Raises the UserNameChanged event
Inherited from Consultingwerk.SmartFramework.Authorization.SmartUserGroup_Generated
+ PopulateList (handle, character, Object, character) Populates a List object with EntityTable objects for buffers
Inherited from Consultingwerk.OERA.EntityTable
+ PopulateList (handle, Object, character) Populates a List object with EntityTable objects for buffers
Inherited from Consultingwerk.OERA.EntityTable
# SetModified () Set's the current row to modified
Inherited from Consultingwerk.OERA.EntityTable

Top Constructor Summary
Options Name Purpose
+ SmartUserGroup () Constructor of the SmartUserGroup class
+ SmartUserGroup (handle) Constructor of the SmartUserGroup class

Top Event Summary
Options Name Purpose
+ GroupGuidChanged (Object, EventArgs) Raised when the GroupGuid property value changes
Inherited from Consultingwerk.SmartFramework.Authorization.SmartUserGroup_Generated
+ GroupNameChanged (Object, EventArgs) Raised when the GroupName property value changes
Inherited from Consultingwerk.SmartFramework.Authorization.SmartUserGroup_Generated
+ UserGroupGuidChanged (Object, EventArgs) Raised when the UserGroupGuid property value changes
Inherited from Consultingwerk.SmartFramework.Authorization.SmartUserGroup_Generated
+ UserGuidChanged (Object, EventArgs) Raised when the UserGuid property value changes
Inherited from Consultingwerk.SmartFramework.Authorization.SmartUserGroup_Generated
+ UserNameChanged (Object, EventArgs) Raised when the UserName property value changes
Inherited from Consultingwerk.SmartFramework.Authorization.SmartUserGroup_Generated

Top Property Summary
Options Name Purpose
+ CHARACTER GroupGuid
Inherited from Consultingwerk.SmartFramework.Authorization.SmartUserGroup_Generated
+ CHARACTER GroupName
Inherited from Consultingwerk.SmartFramework.Authorization.SmartUserGroup_Generated
+ RowStateEnum RowState
Inherited from Consultingwerk.OERA.EntityTable
+ CHARACTER UserGroupGuid
Inherited from Consultingwerk.SmartFramework.Authorization.SmartUserGroup_Generated
+ CHARACTER UserGuid
Inherited from Consultingwerk.SmartFramework.Authorization.SmartUserGroup_Generated
+ CHARACTER UserName
Inherited from Consultingwerk.SmartFramework.Authorization.SmartUserGroup_Generated


Method Detail
Top

PROTECTED AssignFromBuffer (handle)

Overrides Consultingwerk.SmartFramework.Authorization.SmartUserGroup_Generated:AssignFromBuffer (handle)
Purpose: Copies the buffer values to the entity table's properties
Notes:

Parameters:
phBuffer HANDLE
The handle of the source buffer
Top

PROTECTED AssignToBuffer (handle)

Overrides Consultingwerk.SmartFramework.Authorization.SmartUserGroup_Generated:AssignToBuffer (handle)
Purpose: Copies the entity table's properties to the buffer values
Notes:

Parameters:
phBuffer HANDLE
The handle of the target buffer
Top

PROTECTED HANDLE GetChildRecord (handle, character)

Inherited from Consultingwerk.OERA.EntityTable
Purpose: Returns the first (and typically only) child record of a to-one
relation
Notes:

Parameters:
phParentBuffer HANDLE
The handle to the parent buffer
pcDataRelationName CHARACTER
The name of the data-relation to return the child buffer for
Returns HANDLE
The handle of the child record, already located to the first record (if any)
Top

PROTECTED GetChildRecords (handle, character, Object, character)

Inherited from Consultingwerk.OERA.EntityTable
Purpose: Populates a List of child records
Notes: As we currently don't support "generic Interfaces", we can only access
the strong typed Add method of the Generic lists using the DYNAMIC-INVOKE
statement.

Parameters:
phParentBuffer HANDLE
The handle to the parent buffer
pcDataRelationName CHARACTER
The name of the data-relation to return the child buffer for
poList Progress.Lang.Object
The List to populate
pcClassName CHARACTER
The name of the ChildClass
Top

PUBLIC InitializeNewRow ()

Inherited from Consultingwerk.OERA.EntityTable
Purpose: Initializes a New row
Notes: Provides a method to provide initial values when records are added to
differentiate from the Constructor usage when Rows are populate based
on existing DB records
Override this method to provide initial values

Top

PROTECTED OnGroupGuidChanged (EventArgs)

Inherited from Consultingwerk.SmartFramework.Authorization.SmartUserGroup_Generated
Purpose: Raises the GroupGuidChanged event
Notes:

Parameters:
e Consultingwerk.EventArgs
The Consultingwerk.EventArgs with the data for this event
Top

PROTECTED OnGroupNameChanged (EventArgs)

Inherited from Consultingwerk.SmartFramework.Authorization.SmartUserGroup_Generated
Purpose: Raises the GroupNameChanged event
Notes:

Parameters:
e Consultingwerk.EventArgs
The Consultingwerk.EventArgs with the data for this event
Top

PROTECTED OnUserGroupGuidChanged (EventArgs)

Inherited from Consultingwerk.SmartFramework.Authorization.SmartUserGroup_Generated
Purpose: Raises the UserGroupGuidChanged event
Notes:

Parameters:
e Consultingwerk.EventArgs
The Consultingwerk.EventArgs with the data for this event
Top

PROTECTED OnUserGuidChanged (EventArgs)

Inherited from Consultingwerk.SmartFramework.Authorization.SmartUserGroup_Generated
Purpose: Raises the UserGuidChanged event
Notes:

Parameters:
e Consultingwerk.EventArgs
The Consultingwerk.EventArgs with the data for this event
Top

PROTECTED OnUserNameChanged (EventArgs)

Inherited from Consultingwerk.SmartFramework.Authorization.SmartUserGroup_Generated
Purpose: Raises the UserNameChanged event
Notes:

Parameters:
e Consultingwerk.EventArgs
The Consultingwerk.EventArgs with the data for this event
Top

PUBLIC PopulateList (handle, character, Object, character)

Inherited from Consultingwerk.OERA.EntityTable
Purpose: Populates a List object with EntityTable objects for buffers
Notes: Selects the buffer records using an optional Query string
As we currently don't support "generic Interfaces", we can only access
the strong typed Add method of the Generic lists using the DYNAMIC-INVOKE
statement.

Parameters:
phBuffer HANDLE
The Buffer to return add EntityTable instances to the list
pcQueryString CHARACTER
The QueryString to use while populating the list
poList Progress.Lang.Object
The list to add the EntityTable instances to
pcClassName CHARACTER
The name of the class to create EntityTable instances of (child class of the EntityTable)
Top

PUBLIC PopulateList (handle, Object, character)

Inherited from Consultingwerk.OERA.EntityTable
Purpose: Populates a List object with EntityTable objects for buffers
Notes:

Parameters:
phBuffer HANDLE
The Buffer to return add EntityTable instances to the list
poList Progress.Lang.Object
The list to add the EntityTable instances to
pcClassName CHARACTER
The name of the class to create EntityTable instances of (child class of the EntityTable)
Top

PROTECTED SetModified ()

Inherited from Consultingwerk.OERA.EntityTable
Purpose: Set's the current row to modified
Notes: When the RowState is Add or Deleted it will not be changed



Constructor Detail
Top

PUBLIC SmartUserGroup ()

Purpose: Constructor of the SmartUserGroup class
Notes:

Top

PUBLIC SmartUserGroup (handle)

Purpose: Constructor of the SmartUserGroup class
Notes:

Parameters:
phBuffer HANDLE
A source buffer to copy the values from


Event Detail
Top

PUBLIC GroupGuidChanged (Object, EventArgs)

Inherited from Consultingwerk.SmartFramework.Authorization.SmartUserGroup_Generated
Purpose: Raised when the GroupGuid property value changes
Notes:

Parameters:
sender Progress.Lang.Object
The reference to the object that raised the event
e Consultingwerk.EventArgs
The Consultingwerk.EventArgs with the data for this event
Top

PUBLIC GroupNameChanged (Object, EventArgs)

Inherited from Consultingwerk.SmartFramework.Authorization.SmartUserGroup_Generated
Purpose: Raised when the GroupName property value changes
Notes:

Parameters:
sender Progress.Lang.Object
The reference to the object that raised the event
e Consultingwerk.EventArgs
The Consultingwerk.EventArgs with the data for this event
Top

PUBLIC UserGroupGuidChanged (Object, EventArgs)

Inherited from Consultingwerk.SmartFramework.Authorization.SmartUserGroup_Generated
Purpose: Raised when the UserGroupGuid property value changes
Notes:

Parameters:
sender Progress.Lang.Object
The reference to the object that raised the event
e Consultingwerk.EventArgs
The Consultingwerk.EventArgs with the data for this event
Top

PUBLIC UserGuidChanged (Object, EventArgs)

Inherited from Consultingwerk.SmartFramework.Authorization.SmartUserGroup_Generated
Purpose: Raised when the UserGuid property value changes
Notes:

Parameters:
sender Progress.Lang.Object
The reference to the object that raised the event
e Consultingwerk.EventArgs
The Consultingwerk.EventArgs with the data for this event
Top

PUBLIC UserNameChanged (Object, EventArgs)

Inherited from Consultingwerk.SmartFramework.Authorization.SmartUserGroup_Generated
Purpose: Raised when the UserName property value changes
Notes:

Parameters:
sender Progress.Lang.Object
The reference to the object that raised the event
e Consultingwerk.EventArgs
The Consultingwerk.EventArgs with the data for this event


Property Detail
Top

PUBLIC CHARACTER GroupGuid

Inherited from Consultingwerk.SmartFramework.Authorization.SmartUserGroup_Generated

Returns CHARACTER
Top

PUBLIC CHARACTER GroupName

Inherited from Consultingwerk.SmartFramework.Authorization.SmartUserGroup_Generated

Returns CHARACTER
Top

PUBLIC RowStateEnum RowState

Inherited from Consultingwerk.OERA.EntityTable

Returns RowStateEnum
Top

PUBLIC CHARACTER UserGroupGuid

Inherited from Consultingwerk.SmartFramework.Authorization.SmartUserGroup_Generated

Returns CHARACTER
Top

PUBLIC CHARACTER UserGuid

Inherited from Consultingwerk.SmartFramework.Authorization.SmartUserGroup_Generated

Returns CHARACTER
Top

PUBLIC CHARACTER UserName

Inherited from Consultingwerk.SmartFramework.Authorization.SmartUserGroup_Generated

Returns CHARACTER


©2006-2023 Consultingwerk Ltd.         info@consultingwerk.de         http://www.consultingwerk.de       27.03.2024 00:34:29