mirror of
https://github.com/NativeScript/NativeScript.git
synced 2025-08-18 05:18:39 +08:00
Merge pull request #223 from NativeScript/API-doc-update
onSetNativeValue description fixed
This commit is contained in:
4
ui/core/proxy.d.ts
vendored
4
ui/core/proxy.d.ts
vendored
@ -7,7 +7,7 @@
|
||||
*/
|
||||
class PropertyMetadata extends dependencyObservable.PropertyMetadata {
|
||||
/**
|
||||
* Gets or sets a dependencyObservable.PropertyChangedCallback which is used to react after changing value on native side.
|
||||
* Gets or sets a dependencyObservable.PropertyChangedCallback which is used to set the value on native side.
|
||||
*/
|
||||
public onSetNativeValue: dependencyObservable.PropertyChangedCallback;
|
||||
|
||||
@ -17,7 +17,7 @@
|
||||
* @param options (optional) A value that states how this property affects visual tree.
|
||||
* @param onChanged (optional) A callback function which will be executed when value of the dependency property is changed.
|
||||
* @param onValidateValue (optional) A callback function which will be executed to validate the value of the dependency property.
|
||||
* @param onSetNativeValue (optional) A callback function which will be executed when value of the native side is changed.
|
||||
* @param onSetNativeValue (optional) A callback function which will be executed to set the value on native side.
|
||||
*/
|
||||
constructor(
|
||||
defaultValue: any,
|
||||
|
Reference in New Issue
Block a user