IsPrivateField Method

The IsPrivateField method determines whether or not a field is private. A private field is a type of field that only allows the record owner to view the record. For more information about private fields, see Siebel Object Types Reference.

The IsPrivateField method returns one of the following values:

  • true. The field that the control references is private.

  • false. The field that the control references is not private.

It uses the following syntax:

this.IsPrivateField(control.GetName()) 

You add the following code in the physical renderer:

var bPvtField = this.GetPM().ExecuteMethod("IsPrivateField", control.GetName());