GetType
返回当前用户信息的类型属性。
语法
expression.GetType();
expression - 表示 ApiProtectedRangeUserInfo 类的变量。
参数
此方法没有任何参数。
返回值
示例
获取电子表格中受保护范围用户的类型。
// How to get an user info of a protected range and show its type in a spreadsheet.
// Get an user type of a protected range and add it to the worksheet.
let worksheet = Api.GetActiveSheet();
worksheet.AddProtectedRange("protectedRange", "$A$1:$B$1").AddUser("userId", "name", "CanView");
let protectedRange = worksheet.GetProtectedRange("protectedRange");
let userInfo = protectedRange.GetUser("userId");
let userType = userInfo.GetType();
worksheet.GetRange("A3").SetValue("Type: " + userType);