File

projects/wms-framework/src/lib/models/formgeneration/DataField.ts

Description

DataField class.

Index

Properties
Methods

Properties

Content
Type : FrameworkElement

Methods

ReplaceTextBox
ReplaceTextBox(newControl: FrameworkElement, dataBindingProperty: DependencyProperty, arg2: (binding: any) => void)

ReplaceTextBox method.

Parameters :
Name Type Optional
newControl FrameworkElement No
dataBindingProperty DependencyProperty No
arg2 function No
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.');
  }
}

result-matching ""

    No results matching ""