ASP.NET Core MVC Controls | ComponentOne
C1.AspNetCore.Mvc Assembly / C1.Web.Mvc.TagHelpers Namespace / AutoGridLayoutTagHelper Class / UpdateProperty Method
The sub-property name.
The value to be updated.

In This Topic
    UpdateProperty Method (AutoGridLayoutTagHelper)
    In This Topic
    Updates the sub-property specified by its name and value.
    Syntax
    'Declaration
     
    Protected Overridable Function UpdateProperty( _
       ByVal propertyName As String, _
       ByVal value As Object _
    ) As Boolean
    protected virtual bool UpdateProperty( 
       string propertyName,
       object value
    )

    Parameters

    propertyName
    The sub-property name.
    value
    The value to be updated.

    Return Value

    A System.Boolean value indicates whether to use the default updating. If you don't want the default updating(update with the value to the property which name is propertyName), you can write customized codes in this method and return true. Otherwise, return false.
    See Also