|
|
|
|
|
<Source>.DeleteView (Function) In french: <Source>.DétruitVue
Not available with this kind of connection
Deletes a previously created view. This deletes everything related to the view, including its description. During this deletion, the records locked by the view (if they exist) are unlocked.
IF Client34.DétruitVue() = False THEN
Error("Erreur lors de la destruction d'une vue : " + HError())
ELSE
Info("La vue a bien été détruite.")
END
Syntax
<Result> = <Source>.DeleteView()
<Result>: Boolean - True if the view was deleted,
- False in the event of a problem: sight is not destroyed. HError is used to identify the error.
<Source>: Type corresponding to the specified source Name of the view to delete. This name was defined with <Source>.CreateView. Remarks By default, when exiting from the application, all the existing views are deleted.
This page is also available for…
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|