PropertyHelper.GetProperty C# (CSharp) Method

GetProperty() public method

public GetProperty ( bool isMine ) : UnityEditor.SerializedProperty
isMine bool
return UnityEditor.SerializedProperty
	public SerializedProperty GetProperty(bool isMine) {
		return isMine ? mine : theirs;
	}
	public PropertyHelper(ComponentHelper parent, SerializedProperty mine, SerializedProperty theirs) {

Usage Example

Example #1
0
        public SelectOperation <TDataType> Alias(string tableColumn, Expression <Func <TDataType, object> > alias)
        {
            var aliasName = PropertyHelper.GetProperty(alias).Name;

            _builder.AliasSelectColumn(tableColumn, aliasName);
            return(this);
        }
All Usage Examples Of PropertyHelper::GetProperty