Represents info about the current cell.
Inheritance
object
ComponentBase
- IComponent
- IHandleEvent
- IHandleAfterRender
- JsonSerializable
Constructors
Section titled "Constructors"constructor
public IgbEditorCellInfo() Returns IgbEditorCellInfo
Properties
Section titled "Properties"StyleKey
Section titled "StyleKey"Inherited from: IgbCellInfo
Gets the style key of the current cell, used for recycling.
[Parameter]
public string StyleKey { get; set; } DataRow
Section titled "DataRow"Inherited from: IgbCellInfo
Gets the absolute data row for the current cell.
[Parameter]
public int DataRow { get; set; } ColumnIdx
Section titled "ColumnIdx"Inherited from: IgbCellInfo
Gets the column index for the current cell.
public int ColumnIdx { get; protected set; } IsSectionSummary
Section titled "IsSectionSummary"Inherited from: IgbCellInfo
public bool IsSectionSummary { get; protected set; } IsRootSummary
Section titled "IsRootSummary"Inherited from: IgbCellInfo
public bool IsRootSummary { get; protected set; } IsFirstRootSummarySeparator
Section titled "IsFirstRootSummarySeparator"Inherited from: IgbCellInfo
public bool IsFirstRootSummarySeparator { get; protected set; } IsPositionDirty
Section titled "IsPositionDirty"Inherited from: IgbCellInfo
Gets if the position of the cell is dirty.
[Parameter]
public bool IsPositionDirty { get; set; } IsSizeDirty
Section titled "IsSizeDirty"Inherited from: IgbCellInfo
Gets if the size of the cell is dirty.
[Parameter]
public bool IsSizeDirty { get; set; } IsContentDirty
Section titled "IsContentDirty"Inherited from: IgbCellInfo
Gets if the content of the cell is dirty.
[Parameter]
public bool IsContentDirty { get; set; } IsBorderDirty
Section titled "IsBorderDirty"Inherited from: IgbCellInfo
Gets if the content of the cell is dirty.
[Parameter]
public bool IsBorderDirty { get; set; } IsLayerDirty
Section titled "IsLayerDirty"Inherited from: IgbCellInfo
Gets if the layer of the cell is dirty.
[Parameter]
public bool IsLayerDirty { get; set; } IsStateDirty
Section titled "IsStateDirty"Inherited from: IgbCellInfo
Gets if the layer of the cell is dirty.
[Parameter]
public bool IsStateDirty { get; set; } IsDataDirty
Section titled "IsDataDirty"Inherited from: IgbCellInfo
Gets if the data of the cell is dirty.
[Parameter]
public bool IsDataDirty { get; set; } IsPlaceholdContentNeeded
Section titled "IsPlaceholdContentNeeded"Inherited from: IgbCellInfo
Gets if placeholder content is needed when virtualized.
[Parameter]
public bool IsPlaceholdContentNeeded { get; set; } ActionManager
Section titled "ActionManager"Inherited from: IgbCellInfo
Gets the action manager to propagate actions back to the grid.
[Parameter]
public CellActionManager ActionManager { get; set; } IsHitTestVisible
Section titled "IsHitTestVisible"Inherited from: IgbCellInfo
Gets or sets whether the cell is hit test visible.
[Parameter]
public bool IsHitTestVisible { get; set; } IsRowPinned
Section titled "IsRowPinned"Inherited from: IgbCellInfo
Gets if this cell belongs to a row that has been marked as pinned.
[Parameter]
public bool IsRowPinned { get; set; } IsRowSticky
Section titled "IsRowSticky"Inherited from: IgbCellInfo
Gets if this cell belongs to a row that will stick to the top of the grid.
[Parameter]
public bool IsRowSticky { get; set; } IsLastStickyRow
Section titled "IsLastStickyRow"Inherited from: IgbCellInfo
Gets if this cell is the last row that can stick to the top of the grid.
[Parameter]
public bool IsLastStickyRow { get; set; } IsFilterRow
Section titled "IsFilterRow"Inherited from: IgbCellInfo
Gets if this cell is in the filter row.
[Parameter]
public bool IsFilterRow { get; set; } Indent
Section titled "Indent"Inherited from: IgbCellInfo
Gets the indent level of the cell.
[Parameter]
public int Indent { get; set; } RowItem
Section titled "RowItem"Inherited from: IgbCellInfo
[Parameter]
public object RowItem { get; set; } RowItemScript
Section titled "RowItemScript"Inherited from: IgbCellInfo
Provides a means of setting RowItem in the JavaScript environment.
[Parameter]
public string RowItemScript { get; set; } Inherited from: IgbCellInfo
Gets the X position of the cell within the content.
[Parameter]
public double X { get; set; } Inherited from: IgbCellInfo
Gets the Y position of the cell within the content.
[Parameter]
public double Y { get; set; } SnappedX
Section titled "SnappedX"Inherited from: IgbCellInfo
Gets the pixel snapped X position of the cell within the content.
[Parameter]
public int SnappedX { get; set; } SnappedY
Section titled "SnappedY"Inherited from: IgbCellInfo
Gets the snapped Y position of the cell within the content.
[Parameter]
public int SnappedY { get; set; } EditOpacity
Section titled "EditOpacity"Inherited from: IgbCellInfo
Gets or sets the opacity for cells that have unsaved edits.
[Parameter]
public double EditOpacity { get; set; } ContentOpacity
Section titled "ContentOpacity"Inherited from: IgbCellInfo
Gets or sets the opacity of the content of the cell.
[Parameter]
public double ContentOpacity { get; set; } ActualContentOpacity
Section titled "ActualContentOpacity"Inherited from: IgbCellInfo
Gets the actual content opacity of the cell.
[Parameter]
public double ActualContentOpacity { get; set; } Opacity
Section titled "Opacity"Inherited from: IgbCellInfo
Gets or sets the opacity of the cell.
[Parameter]
public double Opacity { get; set; } ActualOpacity
Section titled "ActualOpacity"Inherited from: IgbCellInfo
Gets the actual opacity of the cell.
[Parameter]
public double ActualOpacity { get; set; } Height
Section titled "Height"Inherited from: IgbCellInfo
Gets the height of the cell.
[Parameter]
public int Height { get; set; } Width
Section titled "Width"Inherited from: IgbCellInfo
Gets the width of the cell.
[Parameter]
public int Width { get; set; } IsSelected
Section titled "IsSelected"Inherited from: IgbCellInfo
Gets if the cell is selected.
[Parameter]
public bool IsSelected { get; set; } SelectedStatus
Section titled "SelectedStatus"Inherited from: IgbCellInfo
Gets the amount that the cell is selected. This is a value between 0 and 1.
[Parameter]
public double SelectedStatus { get; set; } ActivationStatus
Section titled "ActivationStatus"Inherited from: IgbCellInfo
Gets the amount that the cell is activated. This is a value between 0 and 1.
[Parameter]
public double ActivationStatus { get; set; } HoverStatus
Section titled "HoverStatus"Inherited from: IgbCellInfo
Gets the amount that the cell is hovered. This is a value between 0 and 1.
[Parameter]
public double HoverStatus { get; set; } IsHoverable
Section titled "IsHoverable"Inherited from: IgbCellInfo
Gets whether the cell is hoverable or not.
[Parameter]
public bool IsHoverable { get; set; } HorizontalAlignment
Section titled "HorizontalAlignment"Inherited from: IgbCellInfo
Gets or sets the horiztonal alignment of the cell content.
[Parameter]
public CellContentHorizontalAlignment HorizontalAlignment { get; set; } VerticalAlignment
Section titled "VerticalAlignment"Inherited from: IgbCellInfo
Gets or sets the vertical alignment of the cell content.
[Parameter]
public CellContentVerticalAlignment VerticalAlignment { get; set; } Background
Section titled "Background"Inherited from: IgbCellInfo
Gets or sets the background color of the cell.
[Parameter]
public string Background { get; set; } Border
Section titled "Border"Inherited from: IgbCellInfo
Gets or sets the border color of the cell.
[Parameter]
public string Border { get; set; } ActualBackground
Section titled "ActualBackground"Inherited from: IgbCellInfo
Gets the actual background color of the cell
[Parameter]
public string ActualBackground { get; set; } ActualBorder
Section titled "ActualBorder"Inherited from: IgbCellInfo
Gets the actual background color of the cell
[Parameter]
public string ActualBorder { get; set; } ActivationBorder
Section titled "ActivationBorder"Inherited from: IgbCellInfo
Gets the actual background color of the cell
[Parameter]
public string ActivationBorder { get; set; } ErrorBorder
Section titled "ErrorBorder"Inherited from: IgbCellInfo
Gets or sets the error border color of the cell.
[Parameter]
public string ErrorBorder { get; set; } SelectedBackground
Section titled "SelectedBackground"Inherited from: IgbCellInfo
Gets or sets the selected background color of the cell.
[Parameter]
public string SelectedBackground { get; set; } SelectedTextColor
Section titled "SelectedTextColor"Inherited from: IgbCellInfo
Gets or sets the selected text color of the cell.
[Parameter]
public string SelectedTextColor { get; set; } HoverBackground
Section titled "HoverBackground"Inherited from: IgbCellInfo
Gets or sets the hover background color of the cell.
[Parameter]
public string HoverBackground { get; set; } HoverTextColor
Section titled "HoverTextColor"Inherited from: IgbCellInfo
Gets or sets the hover text color of the cell.
[Parameter]
public string HoverTextColor { get; set; } SortIndicatorColor
Section titled "SortIndicatorColor"Inherited from: IgbCellInfo
Gets or sets the color for the sort indicator icon.
[Parameter]
public string SortIndicatorColor { get; set; } StickyRowBackground
Section titled "StickyRowBackground"Inherited from: IgbCellInfo
Gets or sets the background color for the cell when it is stuck to the top of the grid as a pinned row.
[Parameter]
public string StickyRowBackground { get; set; } PinnedRowBackground
Section titled "PinnedRowBackground"Inherited from: IgbCellInfo
Gets or sets the background color for the cell that has been marked as pinned.
[Parameter]
public string PinnedRowBackground { get; set; } LastStickyRowBackground
Section titled "LastStickyRowBackground"Inherited from: IgbCellInfo
Gets or sets the color for the last row in the sticky row area.
[Parameter]
public string LastStickyRowBackground { get; set; } FilterRowBackground
Section titled "FilterRowBackground"Inherited from: IgbCellInfo
Gets or sets the background color for filter row.
[Parameter]
public string FilterRowBackground { get; set; } PinnedRowOpacity
Section titled "PinnedRowOpacity"Inherited from: IgbCellInfo
Gets or sets the color to use for displaying text.
[Parameter]
public double PinnedRowOpacity { get; set; } OriginalValue
Section titled "OriginalValue"Inherited from: IgbCellInfo
Gets or sets the original value for the cell, before processing.
[Parameter]
public object OriginalValue { get; set; } OriginalValueScript
Section titled "OriginalValueScript"Inherited from: IgbCellInfo
Provides a means of setting OriginalValue in the JavaScript environment.
[Parameter]
public string OriginalValueScript { get; set; } RenderValue
Section titled "RenderValue"Inherited from: IgbCellInfo
Gets or sets the text value, if any, which was rendered by a text cell.
[Parameter]
public string RenderValue { get; set; } UserFormattedValue
Section titled "UserFormattedValue"Inherited from: IgbCellInfo
If set, this text will be used when rendering the cell value.
[Parameter]
public string UserFormattedValue { get; set; } TextColor
Section titled "TextColor"Inherited from: IgbCellInfo
Gets or sets the color of the text for the cell, if any.
[Parameter]
public string TextColor { get; set; } ActualTextColor
Section titled "ActualTextColor"Inherited from: IgbCellInfo
Gets the actual color of the text for the cell, if any.
[Parameter]
public string ActualTextColor { get; set; } DeletedTextColor
Section titled "DeletedTextColor"Inherited from: IgbCellInfo
Gets or sets the text color for cells in deleted rows.
[Parameter]
public string DeletedTextColor { get; set; } FontFamily
Section titled "FontFamily"Inherited from: IgbCellInfo
[Parameter]
public string FontFamily { get; set; } FontSize
Section titled "FontSize"Inherited from: IgbCellInfo
[Parameter]
public double FontSize { get; set; } FontStyle
Section titled "FontStyle"Inherited from: IgbCellInfo
[Parameter]
public string FontStyle { get; set; } FontWeight
Section titled "FontWeight"Inherited from: IgbCellInfo
[Parameter]
public string FontWeight { get; set; } ActualFontFamily
Section titled "ActualFontFamily"Inherited from: IgbCellInfo
[Parameter]
public string ActualFontFamily { get; set; } ActualFontSize
Section titled "ActualFontSize"Inherited from: IgbCellInfo
[Parameter]
public double ActualFontSize { get; set; } ActualFontStyle
Section titled "ActualFontStyle"Inherited from: IgbCellInfo
[Parameter]
public string ActualFontStyle { get; set; } ActualFontWeight
Section titled "ActualFontWeight"Inherited from: IgbCellInfo
[Parameter]
public string ActualFontWeight { get; set; } SuffixText
Section titled "SuffixText"Inherited from: IgbCellInfo
Gets or sets the text to display in the suffix area of the cell.
[Parameter]
public string SuffixText { get; set; } SuffixTextColor
Section titled "SuffixTextColor"Inherited from: IgbCellInfo
Gets or sets the color of the suffix text for the cell, if any.
[Parameter]
public string SuffixTextColor { get; set; } SuffixTextFontFamily
Section titled "SuffixTextFontFamily"Inherited from: IgbCellInfo
[Parameter]
public string SuffixTextFontFamily { get; set; } SuffixTextFontSize
Section titled "SuffixTextFontSize"Inherited from: IgbCellInfo
[Parameter]
public double SuffixTextFontSize { get; set; } SuffixTextFontStyle
Section titled "SuffixTextFontStyle"Inherited from: IgbCellInfo
[Parameter]
public string SuffixTextFontStyle { get; set; } SuffixTextFontWeight
Section titled "SuffixTextFontWeight"Inherited from: IgbCellInfo
[Parameter]
public string SuffixTextFontWeight { get; set; } SuffixIconName
Section titled "SuffixIconName"Inherited from: IgbCellInfo
Gets or sets the icon to display in the suffix area of the cell.
[Parameter]
public string SuffixIconName { get; set; } SuffixIconCollectionName
Section titled "SuffixIconCollectionName"Inherited from: IgbCellInfo
Gets or sets the icon to display in the suffix area of the cell.
[Parameter]
public string SuffixIconCollectionName { get; set; } SuffixIconStroke
Section titled "SuffixIconStroke"Inherited from: IgbCellInfo
Gets or sets the stroke color of the suffix icon.
[Parameter]
public string SuffixIconStroke { get; set; } SuffixIconFill
Section titled "SuffixIconFill"Inherited from: IgbCellInfo
Gets or sets the fill color of the suffix icon.
[Parameter]
public string SuffixIconFill { get; set; } SuffixIconViewBoxLeft
Section titled "SuffixIconViewBoxLeft"Inherited from: IgbCellInfo
Gets or sets the suffix icon's viewbox x coordinate.
[Parameter]
public double SuffixIconViewBoxLeft { get; set; } SuffixIconViewBoxTop
Section titled "SuffixIconViewBoxTop"Inherited from: IgbCellInfo
Gets or sets the suffix icon's viewbox y coordinate.
[Parameter]
public double SuffixIconViewBoxTop { get; set; } SuffixIconViewBoxWidth
Section titled "SuffixIconViewBoxWidth"Inherited from: IgbCellInfo
Gets or sets the suffix icon's viewbox width.
[Parameter]
public double SuffixIconViewBoxWidth { get; set; } SuffixIconViewBoxHeight
Section titled "SuffixIconViewBoxHeight"Inherited from: IgbCellInfo
Gets or sets the suffix icon's viewbox height.
[Parameter]
public double SuffixIconViewBoxHeight { get; set; } SuffixMargin
Section titled "SuffixMargin"Inherited from: IgbCellInfo
Gets or sets the suffix margin.
[Parameter]
public double SuffixMargin { get; set; } TextDecoration
Section titled "TextDecoration"Inherited from: IgbCellInfo
Gets or sets the text decorations to apply to the cell text.
[Parameter]
public TextCellDecoration TextDecoration { get; set; } LineBreakMode
Section titled "LineBreakMode"Inherited from: IgbCellInfo
Gets or sets the line break mode to use if text is present in the cell.
[Parameter]
public TextCellLineBreakMode LineBreakMode { get; set; } VirtualizationPercentage
Section titled "VirtualizationPercentage"Inherited from: IgbCellInfo
Gets or sets the virtualization percentage value. This is between 0 an 1, and indicates how virtual the content is at present.
[Parameter]
public double VirtualizationPercentage { get; set; } PaddingLeft
Section titled "PaddingLeft"Inherited from: IgbCellInfo
Gets or sets the left padding to use for the content.
[Parameter]
public int PaddingLeft { get; set; } PaddingTop
Section titled "PaddingTop"Inherited from: IgbCellInfo
Gets or sets the top padding to use for the content.
[Parameter]
public int PaddingTop { get; set; } PaddingRight
Section titled "PaddingRight"Inherited from: IgbCellInfo
Gets or sets the right padding to use for the content.
[Parameter]
public int PaddingRight { get; set; } PaddingBottom
Section titled "PaddingBottom"Inherited from: IgbCellInfo
Gets or sets the bottom padding to use for the content.
[Parameter]
public int PaddingBottom { get; set; } ActualPaddingLeft
Section titled "ActualPaddingLeft"Inherited from: IgbCellInfo
Gets or sets the left padding to use for the content.
[Parameter]
public int ActualPaddingLeft { get; set; } ActualPaddingTop
Section titled "ActualPaddingTop"Inherited from: IgbCellInfo
Gets or sets the top padding to use for the content.
[Parameter]
public int ActualPaddingTop { get; set; } ActualPaddingRight
Section titled "ActualPaddingRight"Inherited from: IgbCellInfo
Gets or sets the right padding to use for the content.
[Parameter]
public int ActualPaddingRight { get; set; } ActualPaddingBottom
Section titled "ActualPaddingBottom"Inherited from: IgbCellInfo
Gets or sets the bottom padding to use for the content.
[Parameter]
public int ActualPaddingBottom { get; set; } BorderLeftWidth
Section titled "BorderLeftWidth"Inherited from: IgbCellInfo
Gets or sets the left border to use for the content.
[Parameter]
public int BorderLeftWidth { get; set; } BorderTopWidth
Section titled "BorderTopWidth"Inherited from: IgbCellInfo
Gets or sets the top border to use for the content.
[Parameter]
public int BorderTopWidth { get; set; } BorderRightWidth
Section titled "BorderRightWidth"Inherited from: IgbCellInfo
Gets or sets the right border to use for the content.
[Parameter]
public int BorderRightWidth { get; set; } BorderBottomWidth
Section titled "BorderBottomWidth"Inherited from: IgbCellInfo
Gets or sets the bottom border to use for the content.
[Parameter]
public int BorderBottomWidth { get; set; } ActivationBorderLeftWidth
Section titled "ActivationBorderLeftWidth"Inherited from: IgbCellInfo
Gets or sets the left activation border to use for the content.
[Parameter]
public int ActivationBorderLeftWidth { get; set; } ActivationBorderTopWidth
Section titled "ActivationBorderTopWidth"Inherited from: IgbCellInfo
Gets or sets the top activation border to use for the content.
[Parameter]
public int ActivationBorderTopWidth { get; set; } ActivationBorderRightWidth
Section titled "ActivationBorderRightWidth"Inherited from: IgbCellInfo
Gets or sets the right activation border to use for the content.
[Parameter]
public int ActivationBorderRightWidth { get; set; } ActivationBorderBottomWidth
Section titled "ActivationBorderBottomWidth"Inherited from: IgbCellInfo
Gets or sets the bottom activation border to use for the content.
[Parameter]
public int ActivationBorderBottomWidth { get; set; } ErrorBorderLeftWidth
Section titled "ErrorBorderLeftWidth"Inherited from: IgbCellInfo
Gets or sets the left error border to use for the content.
[Parameter]
public int ErrorBorderLeftWidth { get; set; } ErrorBorderTopWidth
Section titled "ErrorBorderTopWidth"Inherited from: IgbCellInfo
Gets or sets the top error border to use for the content.
[Parameter]
public int ErrorBorderTopWidth { get; set; } ErrorBorderRightWidth
Section titled "ErrorBorderRightWidth"Inherited from: IgbCellInfo
Gets or sets the right error border to use for the content.
[Parameter]
public int ErrorBorderRightWidth { get; set; } ErrorBorderBottomWidth
Section titled "ErrorBorderBottomWidth"Inherited from: IgbCellInfo
Gets or sets the bottom error border to use for the content.
[Parameter]
public int ErrorBorderBottomWidth { get; set; } ActualBorderLeftWidth
Section titled "ActualBorderLeftWidth"Inherited from: IgbCellInfo
Gets or sets the actual left border to use for the content.
[Parameter]
public int ActualBorderLeftWidth { get; set; } ActualBorderTopWidth
Section titled "ActualBorderTopWidth"Inherited from: IgbCellInfo
Gets or sets the actual top border to use for the content.
[Parameter]
public int ActualBorderTopWidth { get; set; } ActualBorderRightWidth
Section titled "ActualBorderRightWidth"Inherited from: IgbCellInfo
Gets or sets the actual right border to use for the content.
[Parameter]
public int ActualBorderRightWidth { get; set; } ActualBorderBottomWidth
Section titled "ActualBorderBottomWidth"Inherited from: IgbCellInfo
Gets or sets the actual bottom border to use for the content.
[Parameter]
public int ActualBorderBottomWidth { get; set; } SortDirection
Section titled "SortDirection"Inherited from: IgbCellInfo
Gets the current sort direction for the column containing the cell.
[Parameter]
public ColumnSortDirection SortDirection { get; set; } IsExpanded
Section titled "IsExpanded"Inherited from: IgbCellInfo
Gets the expansion state of the cell.
[Parameter]
public bool IsExpanded { get; set; } IsCollapsable
Section titled "IsCollapsable"Inherited from: IgbCellInfo
Gets if the cell needs to display an expansion indicator.
[Parameter]
public bool IsCollapsable { get; set; } ExpansionIndicatorIconColor
Section titled "ExpansionIndicatorIconColor"Inherited from: IgbCellInfo
Gets or sets the color used to render the expansion indicator icon for this cell.
[Parameter]
public string ExpansionIndicatorIconColor { get; set; } Pinned
Section titled "Pinned"Inherited from: IgbCellInfo
Gets the fixed column position of this cell.
[Parameter]
public PinnedPositions Pinned { get; set; } EditFontFamily
Section titled "EditFontFamily"Inherited from: IgbCellInfo
[Parameter]
public string EditFontFamily { get; set; } EditFontSize
Section titled "EditFontSize"Inherited from: IgbCellInfo
[Parameter]
public double EditFontSize { get; set; } EditFontStyle
Section titled "EditFontStyle"Inherited from: IgbCellInfo
[Parameter]
public string EditFontStyle { get; set; } EditFontWeight
Section titled "EditFontWeight"Inherited from: IgbCellInfo
[Parameter]
public string EditFontWeight { get; set; } IsEdited
Section titled "IsEdited"Inherited from: IgbCellInfo
Gets whether the cell has been edited.
[Parameter]
public bool IsEdited { get; set; } IsDeleted
Section titled "IsDeleted"Inherited from: IgbCellInfo
Gets whether the cell is part of a deleted row.
[Parameter]
public bool IsDeleted { get; set; } EditError
Section titled "EditError"Inherited from: IgbCellInfo
Gets or sets the error message for the cell.
[Parameter]
public string EditError { get; set; } IsInEditMode
Section titled "IsInEditMode"Inherited from: IgbCellInfo
Gets whether the cell is in edit mode.
[Parameter]
public bool IsInEditMode { get; set; } EditID
Section titled "EditID"Inherited from: IgbCellInfo
[Parameter]
public int EditID { get; set; } IgBlazor
Section titled "IgBlazor"Inherited from: BaseRendererElement
[Inject]
protected IIgniteUIBlazor IgBlazor { get; set; } IsComponentRooted
Section titled "IsComponentRooted"Inherited from: BaseRendererElement
public bool IsComponentRooted { get; } ParentTypeName
Section titled "ParentTypeName"Inherited from: BaseRendererElement
protected virtual string ParentTypeName { get; } UseDirectRender
Section titled "UseDirectRender"Inherited from: BaseRendererElement
protected virtual bool UseDirectRender { get; } ChildContent
Section titled "ChildContent"Inherited from: BaseRendererElement
[Parameter]
public RenderFragment ChildContent { get; set; } SupportsVisualChildren
Section titled "SupportsVisualChildren"Inherited from: BaseRendererElement
protected virtual bool SupportsVisualChildren { get; } Inherited from: BaseRendererElement
[Parameter]
public string Name { get; set; } Parent
Section titled "Parent"Inherited from: BaseRendererElement
public object Parent { get; } MethodTarget
Section titled "MethodTarget"Inherited from: BaseRendererElement
protected virtual string MethodTarget { get; } CurrParent
Section titled "CurrParent"Inherited from: BaseRendererElement
protected object CurrParent { get; } DataType
Section titled "DataType"Gets or sets the data type associated with the cell being edited.
[Parameter]
public DataSourceSchemaPropertyType DataType { get; set; } DateFormatString
Section titled "DateFormatString"[Parameter]
public string DateFormatString { get; set; } EditTarget
Section titled "EditTarget"Gets or sets the edit target for this cell.
[Parameter]
public IgbCellInfo EditTarget { get; set; } EditValue
Section titled "EditValue"Gets or sets the user selected value.
[Parameter]
public object EditValue { get; set; } EditValueScript
Section titled "EditValueScript"Provides a means of setting EditValue in the JavaScript environment.
[Parameter]
public string EditValueScript { get; set; } EditorDataSource
Section titled "EditorDataSource"Gets or sets the data source to use for the editor where it makes sense.
[Parameter]
public object EditorDataSource { get; set; } EditorDataSourceScript
Section titled "EditorDataSourceScript"Provides a means of setting EditorDataSource in the JavaScript environment.
[Parameter]
public string EditorDataSourceScript { get; set; } EditorTextField
Section titled "EditorTextField"Gets or sets the editors display member.
[Parameter]
public string EditorTextField { get; set; } EditorType
Section titled "EditorType"Gets or sets the type of editor to use while cell editing.
[Parameter]
public EditorType EditorType { get; set; } EditorValueField
Section titled "EditorValueField"Gets or sets the editors value member.
[Parameter]
public string[] EditorValueField { get; set; } ErrorMessage
Section titled "ErrorMessage"Gets or sets the error message to display in the editor cell.
[Parameter]
public string ErrorMessage { get; set; } IsHidden
Section titled "IsHidden"Gets whether the editor cell is hidden or not.
public bool IsHidden { get; protected set; } ShowTodayButton
Section titled "ShowTodayButton"[Parameter]
public bool ShowTodayButton { get; set; } TargetColumn
Section titled "TargetColumn"Gets the column index that the editor cell is targeting for edit.
public int TargetColumn { get; protected set; } TargetRow
Section titled "TargetRow"Gets the row index that the editor cell is targeting for edit.
public int TargetRow { get; protected set; } public override string Type { get; } Accessors
Section titled "Accessors"_name
Section titled "_name"Inherited from: BaseRendererElement
protected string _name eventCallbacksCache
Section titled "eventCallbacksCache"Inherited from: BaseRendererElement
protected Dictionary<Type, Dictionary<string, FieldInfo>> eventCallbacksCache _cachedSerializedContent
Section titled "_cachedSerializedContent"Inherited from: BaseRendererElement
protected string _cachedSerializedContent Methods
Section titled "Methods"IsCustomFieldDirtyAsync(string)
Section titled "IsCustomFieldDirtyAsync(string)"Inherited from: IgbCellInfo
public Task<bool> IsCustomFieldDirtyAsync(string propertyName) Parameters
- propertyName:
string
Returns any
IsCustomFieldDirty(string)
Section titled "IsCustomFieldDirty(string)"Inherited from: IgbCellInfo
public bool IsCustomFieldDirty(string propertyName) Parameters
- propertyName:
string
Returns any
IsDirtyByIdAsync(int)
Section titled "IsDirtyByIdAsync(int)"Inherited from: IgbCellInfo
Gets if a named property is dirty.
public Task<bool> IsDirtyByIdAsync(int propertyId_) Parameters
- propertyId_:
int
Returns any
IsDirtyById(int)
Section titled "IsDirtyById(int)"Inherited from: IgbCellInfo
public bool IsDirtyById(int propertyId_) Parameters
- propertyId_:
int
Returns any
IsDirtyAsync(string)
Section titled "IsDirtyAsync(string)"Inherited from: IgbCellInfo
Gets if a named property is dirty.
public Task<bool> IsDirtyAsync(string propertyName) Parameters
- propertyName:
string
Returns any
IsDirty(string)
Section titled "IsDirty(string)"Inherited from: IgbCellInfo
public bool IsDirty(string propertyName) Parameters
- propertyName:
string
Returns any
SetNamedValueAsync(string, object)
Section titled "SetNamedValueAsync(string, object)"Inherited from: IgbCellInfo
public Task SetNamedValueAsync(string valueName, object value) Parameters
- valueName:
string - value:
object
Returns any
SetNamedValue(string, object)
Section titled "SetNamedValue(string, object)"Inherited from: IgbCellInfo
public void SetNamedValue(string valueName, object value) Parameters
- valueName:
string - value:
object
Returns any
HasNamedValueAsync(string)
Section titled "HasNamedValueAsync(string)"Inherited from: IgbCellInfo
Returns if there is a named value stored for the cell.
public Task<bool> HasNamedValueAsync(string valueName) Parameters
- valueName:
string
Returns any
HasNamedValue(string)
Section titled "HasNamedValue(string)"Inherited from: IgbCellInfo
public bool HasNamedValue(string valueName) Parameters
- valueName:
string
Returns any
RemoveNamedValueAsync(string)
Section titled "RemoveNamedValueAsync(string)"Inherited from: IgbCellInfo
Removes a named value from the cell.
public Task RemoveNamedValueAsync(string valueName) Parameters
- valueName:
string
Returns any
RemoveNamedValue(string)
Section titled "RemoveNamedValue(string)"Inherited from: IgbCellInfo
public void RemoveNamedValue(string valueName) Parameters
- valueName:
string
Returns any
GetNamedValueAsync(string)
Section titled "GetNamedValueAsync(string)"Inherited from: IgbCellInfo
Gets a named value from the cell.
public Task<object> GetNamedValueAsync(string valueName) Parameters
- valueName:
string
Returns any
GetNamedValue(string)
Section titled "GetNamedValue(string)"Inherited from: IgbCellInfo
public object GetNamedValue(string valueName) Parameters
- valueName:
string
Returns any
EnsureModulesLoaded()
Section titled "EnsureModulesLoaded()"Inherited from: BaseRendererElement
protected virtual void EnsureModulesLoaded() Returns any
BuildRenderTree(RenderTreeBuilder)
Section titled "BuildRenderTree(RenderTreeBuilder)"Inherited from: BaseRendererElement
protected override void BuildRenderTree(RenderTreeBuilder builder) Parameters
- builder:
RenderTreeBuilder
Returns any
OnElementNameChanged(BaseRendererElement, string, string)
Section titled "OnElementNameChanged(BaseRendererElement, string, string)"Inherited from: BaseRendererElement
protected void OnElementNameChanged(BaseRendererElement element, string oldName, string newName) Parameters
- element:
BaseRendererElement - oldName:
string - newName:
string
Returns any
InvokeMethod(string, object[], string[], ElementReference[])
Section titled "InvokeMethod(string, object[], string[], ElementReference[])"Inherited from: BaseRendererElement
protected Task<object> InvokeMethod(string methodName, object[] arguments, string[] types, ElementReference[] nativeElements = null) Parameters
- methodName:
string - arguments:
object[] - types:
string[] - nativeElements:
ElementReference[]
Returns any
InvokeMethodSync(string, object[], string[], ElementReference[])
Section titled "InvokeMethodSync(string, object[], string[], ElementReference[])"Inherited from: BaseRendererElement
protected object InvokeMethodSync(string methodName, object[] arguments, string[] types, ElementReference[] nativeElements = null) Parameters
- methodName:
string - arguments:
object[] - types:
string[] - nativeElements:
ElementReference[]
Returns any
InvokeMethodHelper(string, string, object[], string[], ElementReference[])
Section titled "InvokeMethodHelper(string, string, object[], string[], ElementReference[])"Inherited from: BaseRendererElement
protected Task<object> InvokeMethodHelper(string target, string methodName, object[] arguments, string[] types, ElementReference[] nativeElements) Parameters
- target:
string - methodName:
string - arguments:
object[] - types:
string[] - nativeElements:
ElementReference[]
Returns any
InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])
Section titled "InvokeMethodHelperSync(string, string, object[], string[], ElementReference[])"Inherited from: BaseRendererElement
protected object InvokeMethodHelperSync(string target, string methodName, object[] arguments, string[] types, ElementReference[] nativeElements) Parameters
- target:
string - methodName:
string - arguments:
object[] - types:
string[] - nativeElements:
ElementReference[]
Returns any
IsPropDirty(string)
Section titled "IsPropDirty(string)"Inherited from: BaseRendererElement
protected bool IsPropDirty(string propertyName) Parameters
- propertyName:
string
Returns any
Serialize(SerializationContext, string)
Section titled "Serialize(SerializationContext, string)"Inherited from: BaseRendererElement
public void Serialize(SerializationContext context, string propertyName = null) Parameters
- context:
SerializationContext - propertyName:
string
Returns any
Serialize()
Section titled "Serialize()"Inherited from: BaseRendererElement
public string Serialize() Returns any
EnsureValid()
Section titled "EnsureValid()"Inherited from: BaseRendererElement
protected void EnsureValid() Returns any
SetResourceStringAsync(string, string, string)
Section titled "SetResourceStringAsync(string, string, string)"Inherited from: BaseRendererElement
protected Task<object> SetResourceStringAsync(string grouping, string id, string value) Parameters
- grouping:
string - id:
string - value:
string
Returns any
SetResourceStringAsync(string, string)
Section titled "SetResourceStringAsync(string, string)"Inherited from: BaseRendererElement
protected Task<object> SetResourceStringAsync(string grouping, string json) Parameters
- grouping:
string - json:
string
Returns any
FindByName(string)
Section titled "FindByName(string)"public override object FindByName(string name) Parameters
- name:
string
Returns any
FromEventJson(BaseRendererControl, Dictionary<string, object>)
Section titled "FromEventJson(BaseRendererControl, Dictionary<string, object>)"protected override void FromEventJson(BaseRendererControl control, Dictionary<string, object> args) Parameters
- control:
BaseRendererControl - args:
Dictionary
Returns any
ToEventJson(BaseRendererControl, Dictionary<string, object>)
Section titled "ToEventJson(BaseRendererControl, Dictionary<string, object>)"protected override void ToEventJson(BaseRendererControl control, Dictionary<string, object> args) Parameters
- control:
BaseRendererControl - args:
Dictionary