Label.modify Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Overloads
modify(String, String, String) |
Obsolete.
|
modify(String, String) |
Obsolete.
Modifies the text and comment that are associated with a specified label. |
modify(String, String, String)
Caution
The modify method is intended for use from the AX Client during design time only. It should not be used anymore. It is replaced with Visual Studio based design tools.
public:
bool modify(System::String ^ label, System::String ^ text, System::String ^ comment);
[System.Obsolete("The modify method is intended for use from the AX Client during design time only. It should not be used anymore. It is replaced with Visual Studio based design tools.")]
public bool modify (string label, string text, string comment);
[<System.Obsolete("The modify method is intended for use from the AX Client during design time only. It should not be used anymore. It is replaced with Visual Studio based design tools.")>]
member this.modify : string * string * string -> bool
Public Function modify (label As String, text As String, comment As String) As Boolean
Parameters
- label
- String
- text
- String
- comment
- String
A string that specifies the comment that is associated with a label ID.
Returns
- Attributes
Applies to
modify(String, String)
Caution
The modify method is intended for use from the AX Client during design time only. It should not be used anymore. It is replaced with Visual Studio based design tools.
Modifies the text and comment that are associated with a specified label.
public:
bool modify(System::String ^ label, System::String ^ text);
[System.Obsolete("The modify method is intended for use from the AX Client during design time only. It should not be used anymore. It is replaced with Visual Studio based design tools.")]
public bool modify (string label, string text);
[<System.Obsolete("The modify method is intended for use from the AX Client during design time only. It should not be used anymore. It is replaced with Visual Studio based design tools.")>]
member this.modify : string * string -> bool
Public Function modify (label As String, text As String) As Boolean
Parameters
- label
- String
A string that specifies the comment that is associated with a label ID.
- text
- String
A string that specifies the comment that is associated with a label ID.
Returns
true if the label ID is modified; otherwise, false.
- Attributes