Show / Hide Table of Contents

Method MergeIntoInPlaceEditor

| Improve this Doc View Source

MergeIntoInPlaceEditor<T>(RowBinding<T>, String, IFormatProvider)

Merges editor row binding into InPlaceEditor, with inert element displays as string.

Declaration
public static RowBinding<InPlaceEditor> MergeIntoInPlaceEditor<T>(this RowBinding<T> editorRowBinding, string format = null, IFormatProvider formatProvider = null)

    where T : UIElement, new()
Parameters
Type Name Description
RowBinding<T> editorRowBinding

The editor row binding.

System.String format

A composite format string.

System.IFormatProvider formatProvider

An object that supplies culture-specific formatting information.

Returns
Type Description
RowBinding<InPlaceEditor>

The row binding object of InPlaceEditor.

Type Parameters
Name Description
T

The element type of the editor row binding.

| Improve this Doc View Source

MergeIntoInPlaceEditor<T>(RowBinding<T>, Func<RowPresenter, String>, IFormatProvider)

Merges editor row binding into InPlaceEditor, with inert element displays as string.

Declaration
public static RowBinding<InPlaceEditor> MergeIntoInPlaceEditor<T>(this RowBinding<T> editorRowBinding, Func<RowPresenter, string> format, IFormatProvider formatProvider = null)

    where T : UIElement, new()
Parameters
Type Name Description
RowBinding<T> editorRowBinding

The editor row binding.

System.Func<RowPresenter, System.String> format

A delegate to return composite format string from RowPresenter.

System.IFormatProvider formatProvider

An object that supplies culture-specific formatting information.

Returns
Type Description
RowBinding<InPlaceEditor>

The row binding object of InPlaceEditor.

Type Parameters
Name Description
T

The element type of the editor row binding.

| Improve this Doc View Source

MergeIntoInPlaceEditor<TEditor, TInert>(RowBinding<TEditor>, RowBinding<TInert>)

Merges editor row binding into InPlaceEditor, with inert row binding.

Declaration
public static RowBinding<InPlaceEditor> MergeIntoInPlaceEditor<TEditor, TInert>(this RowBinding<TEditor> editorRowBinding, RowBinding<TInert> inertRowBinding)

    where TEditor : UIElement, new()

    where TInert : UIElement, new()
Parameters
Type Name Description
RowBinding<TEditor> editorRowBinding

The editor row binding.

RowBinding<TInert> inertRowBinding

The inert row binding.

Returns
Type Description
RowBinding<InPlaceEditor>

The row binding object of InPlaceEditor.

Type Parameters
Name Description
TEditor

The element type of the editor row binding.

TInert

The element type of the inert row binding.

| Improve this Doc View Source

MergeIntoInPlaceEditor<T>(ScalarBinding<T>, String, IFormatProvider)

Merges editor scalar binding into InPlaceEditor, with inert element displays as string.

Declaration
public static ScalarBinding<InPlaceEditor> MergeIntoInPlaceEditor<T>(this ScalarBinding<T> editorScalarBinding, string format = null, IFormatProvider formatProvider = null)

    where T : UIElement, new()
Parameters
Type Name Description
ScalarBinding<T> editorScalarBinding

The editor scalar binding.

System.String format

A composite format string.

System.IFormatProvider formatProvider

An object that supplies culture-specific formatting information.

Returns
Type Description
ScalarBinding<InPlaceEditor>

The scalar binding object of InPlaceEditor.

Type Parameters
Name Description
T

The element type of editor scalar binding.

| Improve this Doc View Source

MergeIntoInPlaceEditor<TEditor, TInert>(ScalarBinding<TEditor>, ScalarBinding<TInert>)

Merges editor scalar binding into InPlaceEditor, with inert scalar binding.

Declaration
public static ScalarBinding<InPlaceEditor> MergeIntoInPlaceEditor<TEditor, TInert>(this ScalarBinding<TEditor> editorScalarBinding, ScalarBinding<TInert> inertScalarBinding)

    where TEditor : UIElement, new()

    where TInert : UIElement, new()
Parameters
Type Name Description
ScalarBinding<TEditor> editorScalarBinding

The editor scalar binding.

ScalarBinding<TInert> inertScalarBinding

The inert scacalr binding.

Returns
Type Description
ScalarBinding<InPlaceEditor>

The scalar binding object of InPlaceEditor.

Type Parameters
Name Description
TEditor

The element type of editor scalar binding.

TInert

The element type of inert scalar binding.

  • Improve this Doc
  • View Source
Back to top Copyright © Weifen Luo | DevZest