projects/wms-framework/src/lib/models/formgeneration/DataField.ts
DataField class.
Properties |
Methods |
Content |
Type : FrameworkElement
|
ReplaceTextBox | ||||||||||||
ReplaceTextBox(newControl: FrameworkElement, dataBindingProperty: DependencyProperty, arg2: (binding: any) => void)
|
||||||||||||
ReplaceTextBox method.
Parameters :
Returns :
any
{*} |
Validate |
Validate()
|
Validates method.
Returns :
any
{*} |
import { FrameworkElement } from '../../basecomponentmodel/FrameworkElement';
import { DependencyProperty } from '../../basecomponentmodel/DependencyProperty';
import { Debugger } from '../../diagnostics/Debugger';
/**
* DataField class.
*
* @export
* @class DataField
* @wType System.Windows.Controls.DataField
*/
export class DataField {
Content: FrameworkElement;
/**
* ReplaceTextBox method.
*
* @param {FrameworkElement} newControl
* @param {DependencyProperty} dataBindingProperty
* @param {(binding: any) => void} arg2
* @return {*} {*}
* @memberof DataField
* @wIgnore
*/
ReplaceTextBox(
newControl: FrameworkElement,
dataBindingProperty: DependencyProperty,
arg2: (binding: any) => void
): any {
Debugger.Throw('Method not implemented.');
}
/**
* Validates method.
*
* @return {*} {*}
* @memberof DataField
* @wNoMap
*/
Validate(): any {
Debugger.Throw('Method not implemented.');
}
}