FormContext.CanRenderAtEndOfForm Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Gets or sets an indication whether extra content can be rendered at the end of the content of this <form> element. That is, EndOfFormContent will be rendered just prior to the </form> end tag.
public:
property bool CanRenderAtEndOfForm { bool get(); void set(bool value); };
public bool CanRenderAtEndOfForm { get; set; }
member this.CanRenderAtEndOfForm : bool with get, set
Public Property CanRenderAtEndOfForm As Boolean
Property Value
true
if the framework will render EndOfFormContent; false
otherwise. In
particular, true
if the current <form> is associated with a tag helper or will be generated by
an HTML helper; false
when using the default FormContext instance.