UITableView.MoveRow(NSIndexPath, NSIndexPath) Método
Definição
Importante
Algumas informações se referem a produtos de pré-lançamento que podem ser substancialmente modificados antes do lançamento. A Microsoft não oferece garantias, expressas ou implícitas, das informações aqui fornecidas.
Move uma linha de fromIndexPath
para toIndexPath
.
[Foundation.Export("moveRowAtIndexPath:toIndexPath:")]
public virtual void MoveRow (Foundation.NSIndexPath fromIndexPath, Foundation.NSIndexPath toIndexPath);
abstract member MoveRow : Foundation.NSIndexPath * Foundation.NSIndexPath -> unit
override this.MoveRow : Foundation.NSIndexPath * Foundation.NSIndexPath -> unit
Parâmetros
- fromIndexPath
- NSIndexPath
Um NSIndexPath que indica a linha original.
- toIndexPath
- NSIndexPath
O local desejado.
- Atributos
Comentários
Não há função para mover uma matriz de linhas (ao contrário InsertRows(NSIndexPath[], UITableViewRowAnimation) de ou DeleteRows(NSIndexPath[], UITableViewRowAnimation)). Em vez disso, o desenvolvedor applicatin deve chamar essa função repetidamente. Se essa função for chamada dentro de um BeginUpdates()-EndUpdates() bloco de animação, toda a manipulação de linha ocorrerá como uma única animação.