TableEntryBase.CanSetValue(String) Method
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.
Can the data associated with the specified column be set?
public:
virtual bool CanSetValue(System::String ^ keyName);
public:
virtual bool CanSetValue(Platform::String ^ keyName);
virtual bool CanSetValue(std::wstring const & keyName);
public virtual bool CanSetValue (string keyName);
abstract member CanSetValue : string -> bool
override this.CanSetValue : string -> bool
Public Overridable Function CanSetValue (keyName As String) As Boolean
Parameters
- keyName
- String
The key name.
Returns
true if the entry can be set.
Implements
Remarks
This method returning true is not a guarantee that TrySetValue(string, object) will work for keyName
. This method is normally used so that the UI displaying this ITableEntry can indicate whether or not the value can be set.